diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-07 16:21:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-07 16:21:31 (GMT) |
commit | e55d5446ea1de2323d8f77e2b65c9a7c726af22d (patch) | |
tree | d25e63288ca7544a7b43fb4f9b0c518fad52f426 /Modules | |
parent | 9f688bf9d21547bf7bd6e931c0272abb189c7d8c (diff) | |
download | cpython-e55d5446ea1de2323d8f77e2b65c9a7c726af22d.zip cpython-e55d5446ea1de2323d8f77e2b65c9a7c726af22d.tar.gz cpython-e55d5446ea1de2323d8f77e2b65c9a7c726af22d.tar.bz2 |
Thomas Wouters <thomas@xs4all.net>:
Allow -f* parameters to be passed to the compiler from Setup files.
Diffstat (limited to 'Modules')
-rwxr-xr-x | Modules/makesetup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index e8229e6..3da5323 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";; |