From: Guido van Rossum Date: Fri, 21 May 1999 19:18:49 +0000 (+0000) Subject: On HP-UX, -rpath is another option taking an argument that needs to go X-Git-Tag: v1.6a1~1333 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bfefce75e2f7a55e82a88f080d40da60defe95c;p=thirdparty%2FPython%2Fcpython.git On HP-UX, -rpath is another option taking an argument that needs to go to the libs variable. Reported by Albert Chin-A-Young. --- diff --git a/Modules/makesetup b/Modules/makesetup index 69028dd8688a..18fb682d5a77 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";;