diff options
author | Guido van Rossum <guido@python.org> | 1998-09-09 14:04:51 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-09-09 14:04:51 (GMT) |
commit | 76d1f96fe2bf905288ac8c4ef991302f5aeb695a (patch) | |
tree | 2e8a1f72860007f53774a9e02819265d8bd879a0 | |
parent | a063303693464992a9ab70856992cb169a5909e8 (diff) | |
download | cpython-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 "/".
-rwxr-xr-x | Modules/makesetup | 1 |
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 |