From: Fred Drake Date: Fri, 11 Aug 2000 13:58:37 +0000 (+0000) Subject: Add support for FreeBSD --rpath linker option; this is equivalent to X-Git-Tag: v2.0b1~512 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=091ec2cfdd5b57cbf74cdf6ca1806d093f1aefeb;p=thirdparty%2FPython%2Fcpython.git Add support for FreeBSD --rpath linker option; this is equivalent to -R on Solaris and -rpath on IRIX. This closes SourceForge bug #110613 (Jitterbug PR#202), reported by . --- diff --git a/Modules/makesetup b/Modules/makesetup index c0c2712eb6b9..0a2794e0718a 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -143,6 +143,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | -[IDUCf]*) cpps="$cpps $arg";; -Xlinker) libs="$libs $arg"; skip=libs;; -rpath) libs="$libs $arg"; skip=libs;; + --rpath) libs="$libs $arg"; skip=libs;; -[A-Zl]*) libs="$libs $arg";; *.a) libs="$libs $arg";; *.so) libs="$libs $arg";;