OSDN Git Service

2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
authorneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Oct 2002 19:06:16 +0000 (19:06 +0000)
committerneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Oct 2002 19:06:16 +0000 (19:06 +0000)
* Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
* configure.in: Make SET_LIB_PATH substitution more autoconfy.
* Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57783 138bc75d-0d04-0410-961f-82ee72b054a4

ChangeLog
Makefile.in
Makefile.tpl
configure.in

index 05936b2..8ba652d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2002-10-03  Nathanael Nerode  <neroden@gcc.gnu.org>
 
+       * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
+       * configure.in: Make SET_LIB_PATH substitution more autoconfy.
+       * Makefile.in: Regenerate.
+
        * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
        * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
        * Makefile.in: Regenerate.
index 6d5acc6..ce4bffa 100644 (file)
@@ -201,7 +201,7 @@ BUILD_CONFIGARGS = @build_configargs@
 
 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
 # was used.
-SET_LIB_PATH =
+SET_LIB_PATH = @SET_LIB_PATH@
 
 # This is the name of the environment variable used for the path to
 # the libraries.  This may be changed by configure.in.
index 2c72994..5ef7d55 100644 (file)
@@ -204,7 +204,7 @@ BUILD_CONFIGARGS = @build_configargs@
 
 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
 # was used.
-SET_LIB_PATH =
+SET_LIB_PATH = @SET_LIB_PATH@
 
 # This is the name of the environment variable used for the path to
 # the libraries.  This may be changed by configure.in.
index 98f56c3..8988bef 100644 (file)
@@ -1321,11 +1321,13 @@ esac
 # If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
 # binutils tools will find libbfd.so.
 if test "${shared}" = "yes" ; then
-  sed -e 's/^SET_LIB_PATH[     ]*=.*$/SET_LIB_PATH = $(REALLY_SET_LIB_PATH)/' \
-      Makefile > Makefile.tem
-  rm -f Makefile
-  mv -f Makefile.tem Makefile
+  SET_LIB_PATH="\$(REALLY_SET_LIB_PATH)"
+else
+  SET_LIB_PATH=
 fi
+sed -e "s/@SET_LIB_PATH@/${SET_LIB_PATH}/" Makefile > Makefile.tem
+rm -f Makefile
+mv -f Makefile.tem Makefile
 
 
 case "${host}" in