diff options
author | Guido van Rossum <guido@python.org> | 1997-04-02 05:33:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-02 05:33:00 (GMT) |
commit | 9bf8445541bcfb52ecd1a07327b17758f3531560 (patch) | |
tree | f8524e5da02f76ca44f6cbff0f7812b09cc7183e /Modules/makesetup | |
parent | 925e547fcc6479379ed767c20c01ba84f31383b3 (diff) | |
download | cpython-9bf8445541bcfb52ecd1a07327b17758f3531560.zip cpython-9bf8445541bcfb52ecd1a07327b17758f3531560.tar.gz cpython-9bf8445541bcfb52ecd1a07327b17758f3531560.tar.bz2 |
Support include statement :-(
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-x | Modules/makesetup | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index 4ab84c2..47c8dbe 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) ;; |