summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2008-05-30 21:47:44 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2008-05-30 21:47:44 (GMT)
commit2b715cd29baa74e3f66878f326511a9595e80bdb (patch)
treead71afa2b6ced58131a1b8463d6db7f52f03817d
parentc9702f551ca0c86f17aa04112ccb2e6fcb0553f3 (diff)
downloadhdf5-2b715cd29baa74e3f66878f326511a9595e80bdb.zip
hdf5-2b715cd29baa74e3f66878f326511a9595e80bdb.tar.gz
hdf5-2b715cd29baa74e3f66878f326511a9595e80bdb.tar.bz2
[svn-r15112] Purpose: Bug fix
Description: While '-Wl,-rpath' information was being removed from compile lines when using --disable-sharedlib-rpath, some information was still hidden in another variable tht never got reset and thus snuck into the executables. This fix should take care of that issue. Tested: kagiso, smirom
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/configure b/configure
index 67a6b8b..a2882fb 100755
--- a/configure
+++ b/configure
@@ -20862,7 +20862,9 @@ case "X-$RPATH" in
X-no)
{ echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6; }
- hardcode_libdir_flag_spec=''
+ runpath_var=
+ hardcode_libdir_flag_spec=
+ hardcode_libdir_flag_spec_ld=
;;
X-|X-yes)
{ echo "$as_me:$LINENO: result: yes" >&5
diff --git a/configure.in b/configure.in
index 7998ee8..ba97020 100644
--- a/configure.in
+++ b/configure.in
@@ -960,7 +960,9 @@ AC_ARG_ENABLE([sharedlib-rpath],
case "X-$RPATH" in
X-no)
AC_MSG_RESULT([no])
- hardcode_libdir_flag_spec=''
+ runpath_var=
+ hardcode_libdir_flag_spec=
+ hardcode_libdir_flag_spec_ld=
;;
X-|X-yes)
AC_MSG_RESULT([yes])