summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>1995-10-11 08:45:15 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>1995-10-11 08:45:15 (GMT)
commit4237efc7f09d3c878cb04dba8cbb0837b4582611 (patch)
tree98b95b1b026ca5ef0647c9f56a4e52d0aa70c787 /Modules
parentda53c5277c4fb10fbd7798f85eafa91c56819311 (diff)
downloadcpython-4237efc7f09d3c878cb04dba8cbb0837b4582611.zip
cpython-4237efc7f09d3c878cb04dba8cbb0837b4582611.tar.gz
cpython-4237efc7f09d3c878cb04dba8cbb0837b4582611.tar.bz2
Propagate variable calls both to the linker and the compiler.
Diffstat (limited to 'Modules')
-rwxr-xr-xModules/makesetup3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/makesetup b/Modules/makesetup
index 2f4cf5f..76ee033 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -136,7 +136,8 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
*.[cC]) srcs="$srcs $arg";;
*.cc) srcs="$srcs $arg";;
*.c++) srcs="$srcs $arg";;
- \$*) libs="$libs $arg";;
+ \$*) libs="$libs $arg"
+ cpps="$cpps $arg";;
*.*) echo 1>&2 "bad word $arg in $line"
exit 1;;
-u) skip=libs; libs="$libs -u";;