summaryrefslogtreecommitdiffstats
path: root/Modules/makesetup
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-09-09 14:04:51 (GMT)
committerGuido van Rossum <guido@python.org>1998-09-09 14:04:51 (GMT)
commit76d1f96fe2bf905288ac8c4ef991302f5aeb695a (patch)
tree2e8a1f72860007f53774a9e02819265d8bd879a0 /Modules/makesetup
parenta063303693464992a9ab70856992cb169a5909e8 (diff)
downloadcpython-76d1f96fe2bf905288ac8c4ef991302f5aeb695a.zip
cpython-76d1f96fe2bf905288ac8c4ef991302f5aeb695a.tar.gz
cpython-76d1f96fe2bf905288ac8c4ef991302f5aeb695a.tar.bz2
Michael P. Reilly suggested this fix: makesetup wants to prepend
"$(srcdir)/" before all source files even when is starts with "/".
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-xModules/makesetup1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/makesetup b/Modules/makesetup
index fb480dd..b29938c 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -179,6 +179,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
objs="$objs $obj"
case $src in
glmodule.c) ;;
+ /*) ;;
*) src='$(srcdir)/'$src;;
esac
case $doconfig in