From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9208 invoked by alias); 27 Jan 2011 01:48:44 -0000 Received: (qmail 9101 invoked by uid 22791); 27 Jan 2011 01:48:43 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_SOFTFAIL,TW_GC X-Spam-Check-By: sourceware.org Received: from relay02.pair.com (HELO relay02.pair.com) (209.68.5.16) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Thu, 27 Jan 2011 01:48:38 +0000 Received: (qmail 49123 invoked from network); 27 Jan 2011 01:48:35 -0000 Received: from 195.135.221.2 (HELO d95.suse.de) (195.135.221.2) by relay02.pair.com with SMTP; 27 Jan 2011 01:48:35 -0000 X-pair-Authenticated: 195.135.221.2 Date: Thu, 27 Jan 2011 01:48:00 -0000 From: Gerald Pfeifer To: Tom Tromey cc: gcc-patches@gcc.gnu.org, java@gcc.gnu.org Subject: Another Python namespace pollution (was: r147958 - in /trunk/libstdc++-v3: ChangeLog Mak...) In-Reply-To: Message-ID: References: <20090528171422.508.qmail@sourceware.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org X-SW-Source: 2011-01/txt/msg00020.txt.bz2 On Fri, 29 May 2009, Tom Tromey wrote: > 2009-05-29 Tom Tromey > > PR libstdc++/40289: > * python/Makefile.in: Rebuild. > * python/hook.in: Compute module path relative to objfile. > * python/Makefile.am (pythondir): Redefine. > (gdb.py): Subst toolexeclibdir. > (install-data-local): Rewrite. Thanks, Tom! I noticed that coming from the Java side of things we also have two files that are installed in common namespace: share/python/aotcompile.py share/python/classfile.py These have been added by the following patch from all can tell: 2008-06-30 Joshua Sumali Andrew Haley * configure.ac (java-home): new AC_ARG_ENABLE. (aot-compile-rpm): Likewise. : * contrib/aot-compile.in: New file. * contrib/aotcompile.py.in: Likewise. * contrib/aot-compile-rpm.in: Likewise. * contrib/classfile.py: Likewise. * contrib/rebuild-gcj-db.in: Likewise. This is also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47484 . Gerald