From: Fred Drake Date: Fri, 7 Jul 2000 16:21:31 +0000 (+0000) Subject: Thomas Wouters : X-Git-Tag: v2.0b1~1024 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e55d5446ea1de2323d8f77e2b65c9a7c726af22d;p=python Thomas Wouters : Allow -f* parameters to be passed to the compiler from Setup files. --- diff --git a/Modules/makesetup b/Modules/makesetup index e8229e6b5d..3da53234bf 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -140,7 +140,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | srcs) srcs="$srcs $arg"; skip=; continue;; esac case $arg in - -[IDUC]*) cpps="$cpps $arg";; + -[IDUCf]*) cpps="$cpps $arg";; -Xlinker) libs="$libs $arg"; skip=libs;; -rpath) libs="$libs $arg"; skip=libs;; -[A-Zl]*) libs="$libs $arg";;