This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[libstdc++, 3.3] Move LD_RUN_PATH patches over
- From: Phil Edwards <phil at jaj dot com>
- To: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Thu, 15 May 2003 18:30:01 -0400
- Subject: [libstdc++, 3.3] Move LD_RUN_PATH patches over
My two LD_RUN_PATH changes (the second fixing a bug in the first, natch)
are moved over to the 3.3 branch after testing on i686-linux.
Note that this does not fix the BSD make problem as we originally thought.
Neil has since discovered that the assignment to CXX seems to be completely
ignored. Nevertheless the quoting was still wrong, so this patch is
still proper.
Also, I've removed the duplicate "3.3 released" entries from the 3.3
ChangeLog.
2003-05-15 Phil Edwards <pme@gcc.gnu.org>
* testsuite/Makefile.am: Properly quote LD_RUN_PATH.
* testsuite/Makefile.in: Regenerate.
Index: testsuite/Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/Makefile.am,v
retrieving revision 1.12.2.3
diff -u -3 -p -r1.12.2.3 Makefile.am
--- testsuite/Makefile.am 26 Apr 2003 04:02:18 -0000 1.12.2.3
+++ testsuite/Makefile.am 15 May 2003 22:28:51 -0000
@@ -41,7 +41,7 @@ RUNTESTFLAGS =
CXX_build = @glibcpp_CXX@
CXX=`echo "$(CXX_build)" | sed 's,gcc/xgcc ,gcc/g++ ,'`
CXXLINK = \
- LD_RUN_PATH=${LD_RUN_PATH:+$LD_RUN_PATH:}${glibcpp_builddir}/src/.libs\
+ LD_RUN_PATH=$${LD_RUN_PATH:+$$LD_RUN_PATH:}${glibcpp_builddir}/src/.libs\
$(LIBTOOL) --tag=CXX --mode=link $(CXX) \
$(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@