From: Guido van Rossum Date: Wed, 2 Apr 1997 05:33:00 +0000 (+0000) Subject: Support include statement :-( X-Git-Tag: v1.5a1~239 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9bf8445541bcfb52ecd1a07327b17758f3531560;p=thirdparty%2FPython%2Fcpython.git Support include statement :-( --- diff --git a/Modules/makesetup b/Modules/makesetup index 4ab84c21d018..47c8dbe70eb7 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -106,6 +106,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | # Output DEFS in reverse order so first definition overrides case $line in *=*) DEFS="$line$NL$DEFS"; continue;; + 'include '*) DEFS="$line$NL$DEFS"; continue;; '*noobjects*') case $noobjects in yes) ;;