commit | 76d1f96fe2bf905288ac8c4ef991302f5aeb695a | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Sep 09 14:04:51 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Sep 09 14:04:51 1998 +0000 |
tree | 2e8a1f72860007f53774a9e02819265d8bd879a0 | |
parent | a063303693464992a9ab70856992cb169a5909e8 [diff] [blame] |
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 fb480dd..b29938c 100755 --- a/Modules/makesetup +++ b/Modules/makesetup
@@ -179,6 +179,7 @@ objs="$objs $obj" case $src in glmodule.c) ;; + /*) ;; *) src='$(srcdir)/'$src;; esac case $doconfig in