]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Michael P. Reilly suggested this fix: makesetup wants to prepend
authorGuido van Rossum <guido@python.org>
Wed, 9 Sep 1998 14:04:51 +0000 (14:04 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 9 Sep 1998 14:04:51 +0000 (14:04 +0000)
"$(srcdir)/" before all source files even when is starts with "/".

Modules/makesetup

index fb480dd862d96a34b4a9f87e796e1c14c2eb457d..b29938cb31f367a4fef251d0792b0ef0841230af 100755 (executable)
@@ -179,6 +179,7 @@ sed -e 's/[         ]*#.*//' -e '/^[        ]*$/d' |
                        objs="$objs $obj"
                        case $src in
                        glmodule.c) ;;
+                       /*) ;;
                        *) src='$(srcdir)/'$src;;
                        esac
                        case $doconfig in