summaryrefslogtreecommitdiffstats
path: root/Modules/makesetup
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-05-21 19:18:49 (GMT)
committerGuido van Rossum <guido@python.org>1999-05-21 19:18:49 (GMT)
commit8bfefce75e2f7a55e82a88f080d40da60defe95c (patch)
treecba517ccc9e5227a6b775bffc45c0e166b8fb2f1 /Modules/makesetup
parent18659608dcc5eb92182d07240641a696bad5fd7b (diff)
downloadcpython-8bfefce75e2f7a55e82a88f080d40da60defe95c.zip
cpython-8bfefce75e2f7a55e82a88f080d40da60defe95c.tar.gz
cpython-8bfefce75e2f7a55e82a88f080d40da60defe95c.tar.bz2
On HP-UX, -rpath is another option taking an argument that needs to go
to the libs variable. Reported by Albert Chin-A-Young.
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-xModules/makesetup1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/makesetup b/Modules/makesetup
index 69028dd..18fb682 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -142,6 +142,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
case $arg in
-[IDUC]*) cpps="$cpps $arg";;
-Xlinker) libs="$libs $arg"; skip=libs;;
+ -rpath) libs="$libs $arg"; skip=libs;;
-[A-Zl]*) libs="$libs $arg";;
*.a) libs="$libs $arg";;
*.so) libs="$libs $arg";;