diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-22 07:35:48 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-22 07:35:48 (GMT) |
commit | bd994799c3ea1603a723ee01edc406bf8ace7e59 (patch) | |
tree | bc7fdf15de59f6e095b3e6cce824f984f7d28d21 /bin/ltmain.sh | |
parent | bca6f2738bb933b3163d5eb3638fbf7ced3c7d9c (diff) | |
download | hdf5-bd994799c3ea1603a723ee01edc406bf8ace7e59.zip hdf5-bd994799c3ea1603a723ee01edc406bf8ace7e59.tar.gz hdf5-bd994799c3ea1603a723ee01edc406bf8ace7e59.tar.bz2 |
[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
Diffstat (limited to 'bin/ltmain.sh')
-rw-r--r-- | bin/ltmain.sh | 5 |
1 files 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"; |