diff src/Makefile.in @ 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 385aa70fc40d
children d65eb44baa9a
line wrap: on
line diff
--- 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}