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.

classification
Title: Makefile ignores $CPPFLAGS
Type: Stage:
Components: Build Versions: Python 2.4
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: hyeshik.chang, pirschel
Priority: normal Keywords:

Created on 2005-08-14 13:11 by pirschel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Makefile.pre.in.patch pirschel, 2005-08-14 13:11 Patch for Makefile.pre.in
Messages (2)
msg26061 - (view) Author: Dirk Pirschel (pirschel) Date: 2005-08-14 13:11
Makefile ignores $CPPFLAGS Environment variable.

Solution: patch Makefile.pre.in with
----- snip -----
59c59
< CPPFLAGS=	-I. -I$(srcdir)/Include
---
> CPPFLAGS=	-I. -I$(srcdir)/Include @CPPFLAGS@
----- snip -----
msg26062 - (view) Author: Hyeshik Chang (hyeshik.chang) * (Python committer) Date: 2005-08-28 08:15
Logged In: YES 
user_id=55188

It's already fixed in revision 1.149.
History
Date User Action Args
2022-04-11 14:56:12adminsetgithub: 42279
2005-08-14 13:11:39pirschelcreate