diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-13 12:21:47 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-13 12:21:47 (GMT) |
commit | 134192630a28d6ae6c2a256f95a44a2dd3c65388 (patch) | |
tree | 6a169fd4e2b756a3498f0de7685a1c9bf9af006f /Makefile.pre.in | |
parent | a33e9f704735d356a0fac2a77ba44dd9b0a05c63 (diff) | |
download | cpython-134192630a28d6ae6c2a256f95a44a2dd3c65388.zip cpython-134192630a28d6ae6c2a256f95a44a2dd3c65388.tar.gz cpython-134192630a28d6ae6c2a256f95a44a2dd3c65388.tar.bz2 |
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.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 58144f3..90130a2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -90,7 +90,7 @@ PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST) # 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@ |