From 2b715cd29baa74e3f66878f326511a9595e80bdb Mon Sep 17 00:00:00 2001 From: Mike McGreevy Date: Fri, 30 May 2008 16:47:44 -0500 Subject: [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 --- configure | 4 +++- configure.in | 4 +++- 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]) -- cgit v0.12