From: Guido van Rossum Date: Wed, 9 Sep 1998 14:04:51 +0000 (+0000) Subject: Michael P. Reilly suggested this fix: makesetup wants to prepend X-Git-Tag: v1.5.2a2~317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76d1f96fe2bf905288ac8c4ef991302f5aeb695a;p=thirdparty%2FPython%2Fcpython.git Michael P. Reilly suggested this fix: makesetup wants to prepend "$(srcdir)/" before all source files even when is starts with "/". --- diff --git a/Modules/makesetup b/Modules/makesetup index fb480dd862d9..b29938cb31f3 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