From bd994799c3ea1603a723ee01edc406bf8ace7e59 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 22 Apr 2001 02:35:48 -0500 Subject: [svn-r3831] Purpose: Bug Fix Description: The fix I put in on Friday wasn't working properly. Solution: Changed some single quotes to double quotes so that the macros are expanded and set "command_finalize" to the newest values I created. Platforms tested: Modi4 --- bin/ltmain.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/ltmain.sh b/bin/ltmain.sh index 4d4cd92..40e5ab0 100644 --- a/bin/ltmain.sh +++ b/bin/ltmain.sh @@ -2462,13 +2462,14 @@ EOF for foo in X $libs; do if test "$foo" != "X"; then if test -n "$bar"; then - bar='$bar ${wl}-rpath ${wl}$foo'; + bar="$bar ${wl}-rpath ${wl}$foo"; else - bar='${wl}-rpath ${wl}$foo'; + bar="${wl}-rpath ${wl}$foo"; fi; fi; done finalize_rpath="$bar"; + compile_rpath="$bar" ;; *) finalize_rpath="$rpath"; -- cgit v0.12