]> git.eshelyaron.com Git - emacs.git/commitdiff
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
authorKen Raeburn <raeburn@raeburn.org>
Mon, 13 Mar 2000 01:04:12 +0000 (01:04 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 13 Mar 2000 01:04:12 +0000 (01:04 +0000)
the invocation of YMF_PASS_LDFLAGS, in case both of them try to use backquotes.

src/ChangeLog
src/Makefile.in

index 5d4c1221a74588899a2626a12a722ad0a6961339..7e35baa308f9faf4dbe9dc40222f6721c369e660 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-12  Ken Raeburn  <raeburn@gnu.org>
+
+       * 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.
+
 2000-03-12  Dave Love  <fx@gnu.org>
 
        * unexelf.c: Restore changes of 1999-10-19.
index b8e3a9fd02133dd3fc4f9df9cf5c271241203cdc..932eb3dd1a5626f933d6501a5e7c2dbc5a5563f3 100644 (file)
@@ -874,7 +874,8 @@ ${libsrc}make-docfile:
 #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}