From: Skip Montanaro Date: Thu, 6 Jul 2000 17:58:06 +0000 (+0000) Subject: don't prepend "$(srcdir)/" to paths beginning with "$" since they are likely X-Git-Tag: v2.0b1~1048 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd022672a08b803ebec68311383e6ba4ec340768;p=thirdparty%2FPython%2Fcpython.git don't prepend "$(srcdir)/" to paths beginning with "$" since they are likely to be absolute. --- diff --git a/Modules/makesetup b/Modules/makesetup index 18fb682d5a77..e8229e6b5dd9 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -189,6 +189,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | case $src in glmodule.c) ;; /*) ;; + \$*) ;; *) src='$(srcdir)/'$src;; esac case $doconfig in