diff options
author | Guido van Rossum <guido@python.org> | 1995-07-07 22:35:21 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-07-07 22:35:21 +0000 |
commit | 55ea8a7b5bc39370103e7ceb51595765054cbadf (patch) | |
tree | 99aeceff69a91e36316a52f189a48cfda1a0c2e5 | |
parent | 3b46a50d63527a059e047847e4ca10497054c5fd (diff) | |
download | cpython-git-55ea8a7b5bc39370103e7ceb51595765054cbadf.tar.gz |
pass $PLATFORM into config.c
-rw-r--r-- | Modules/Makefile.pre.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 9b28a9523e..588e953ce8 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -86,7 +86,8 @@ $(LIB): $& $(OBJS) Makefile mv python ../python config.o: config.c Makefile $(MYLIBS) - $(LINKCC) $(CFLAGS) -DPYTHONPATH=\"$(PYTHONPATH)\" -c config.c + $(LINKCC) $(CFLAGS) -DPYTHONPATH=\"$(PYTHONPATH)\" \ + -DPLATFORM=\"$(MACHDEP)\" -c config.c clean: -rm -f *.o python core *~ [@,#]* *.old *.orig *.rej |