changeset: 103758:36550e4f9b4c branch: 3.5 parent: 103745:5d93a9b4f0e8 user: Martin Panter date: Tue Sep 13 12:21:47 2016 +0000 files: Makefile.pre.in Misc/NEWS description: Issue #15819: Remove old unconditional -IInclude option A newer instance of this option, enabled in the configure script when building outside the source tree, made this redundant. diff -r 5d93a9b4f0e8 -r 36550e4f9b4c Makefile.pre.in --- a/Makefile.pre.in Mon Sep 12 23:38:50 2016 -0700 +++ b/Makefile.pre.in Tue Sep 13 12:21:47 2016 +0000 @@ -90,7 +90,7 @@ # Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to # be able to build extension modules using the directories specified in the # environment variables -PY_CPPFLAGS= $(BASECPPFLAGS) -I. -IInclude -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS) +PY_CPPFLAGS= $(BASECPPFLAGS) -I. -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS) PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS) NO_AS_NEEDED= @NO_AS_NEEDED@ LDLAST= @LDLAST@ diff -r 5d93a9b4f0e8 -r 36550e4f9b4c Misc/NEWS --- a/Misc/NEWS Mon Sep 12 23:38:50 2016 -0700 +++ b/Misc/NEWS Tue Sep 13 12:21:47 2016 +0000 @@ -328,6 +328,9 @@ - Issue #28066: Fix the logic that searches build directories for generated include files when building outside the source tree. +- Issue #15819: Remove redundant include search directory option for building + outside the source tree. + - Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) - Issue #27705: Update message in validate_ucrtbase.py