This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author blb
Recipients
Date 2003-07-30.06:26:48
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Makefile.pre.in doesnt use @CPPFLAGS@ when defining its 
own version, so if it is set in the environment while 
running configure, that setting is lost during the build.

The following patch fixes this:

--- Makefile.pre.in.orig       Sun Jul 13 04:10:42 2003
+++ Makefile.pre.in   Tue Jul 29 23:18:01 2003
@@ -56,7 +56,7 @@
 OPT=       @OPT@
 BASECFLAGS=    @BASECFLAGS@
 CFLAGS=        $(BASECFLAGS) $(OPT)
-CPPFLAGS=  -I. -I$(srcdir)/Include
+CPPFLAGS=  @CPPFLAGS@ -I. -I$(srcdir)/Include
 LDFLAGS=   @LDFLAGS@
 LDLAST=        @LDLAST@
 SGI_ABI=   @SGI_ABI@
History
Date User Action Args
2008-01-20 09:56:15adminlinkissue780024 messages
2008-01-20 09:56:15admincreate