From 091ec2cfdd5b57cbf74cdf6ca1806d093f1aefeb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 11 Aug 2000 13:58:37 +0000 Subject: 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 . --- Modules/makesetup | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/makesetup b/Modules/makesetup index c0c2712..0a2794e 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";; -- cgit v0.12