changeset 28133:afb4e92f898d

* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before the invocation of YMF_PASS_LDFLAGS, in case both of them try to use backquotes.
author Ken Raeburn <raeburn@raeburn.org>
date Mon, 13 Mar 2000 01:04:12 +0000
parents 2a26c31d59c5
children 60b77d9b88ec
files src/ChangeLog src/Makefile.in
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
Binary file src/ChangeLog has changed
--- a/src/Makefile.in	Sun Mar 12 19:14:25 2000 +0000
+++ b/src/Makefile.in	Mon Mar 13 01:04:12 2000 +0000
@@ -874,7 +874,8 @@
 #endif
 
 temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
-	$(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
+	all_ldflags="${ALL_LDFLAGS}" && \
+	$(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} $${all_ldflags}) \
     -o temacs ${STARTFILES} ${obj} ${otherobj}  \
     OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}