From 854a025cb79c443bea04003517271bac9ac590d8 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 13 Mar 2000 01:04:12 +0000 Subject: [PATCH] * 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. --- src/ChangeLog | 6 ++++++ src/Makefile.in | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5d4c1221a74..7e35baa308f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2000-03-12 Ken Raeburn + + * 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 * unexelf.c: Restore changes of 1999-10-19. diff --git a/src/Makefile.in b/src/Makefile.in index b8e3a9fd021..932eb3dd1a5 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -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} -- 2.39.5