[Python-checkins] CVS: python/dist/src/Modules makesetup,1.35,1.36

Neil Schemenauer nascheme@users.sourceforge.net
Fri, 01 Jun 2001 23:16:04 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv14048/Modules

Modified Files:
	makesetup 
Log Message:
Separate CFLAGS and CPPFLAGS.  CFLAGS should not contain preprocessor
directives, which is the role of CPPFLAGS.  Closes SF patch #414991.


Index: makesetup
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/makesetup,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** makesetup	2001/03/02 07:09:54	1.35
--- makesetup	2001/06/02 06:16:02	1.36
***************
*** 217,221 ****
  			esac
  			case $doconfig in
! 			no)	cc="$cc \$(CCSHARED) \$(CFLAGS)";;
  			*)
  				cc="$cc \$(PY_CFLAGS)";;
--- 217,221 ----
  			esac
  			case $doconfig in
! 			no)	cc="$cc \$(CCSHARED) \$(CFLAGS) \$(CPPFLAGS)";;
  			*)
  				cc="$cc \$(PY_CFLAGS)";;