From: Laurynas Biveinis Date: Fri, 16 Mar 2001 18:34:03 +0000 (+0000) Subject: Makefile.in (DO_X): Use double quotes for quoting "RANLIB=$${RANLIB}". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=69e230371807f22b3dc52ee64e87314fb61c750c;p=gcc.git Makefile.in (DO_X): Use double quotes for quoting "RANLIB=$${RANLIB}". * Makefile.in (DO_X): Use double quotes for quoting "RANLIB=$${RANLIB}". From-SVN: r40557 --- diff --git a/ChangeLog b/ChangeLog index 393a51c7714..cf4082dbed1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-15 Laurynas Biveinis + + * Makefile.in (DO_X): Use double quotes for quoting + "RANLIB=$${RANLIB}". + 2001-03-10 Ovidiu Predescu * MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C. diff --git a/Makefile.in b/Makefile.in index a20988d15ea..456c982dc8e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -967,7 +967,7 @@ $(DO_X): if (cd ./$$i; \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ - "`echo 'RANLIB=$${RANLIB}' | sed -e s/.*=$$/XFOO=/`" \ + "`echo "RANLIB=$${RANLIB}" | sed -e s/.*=$$/XFOO=/`" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ $${target}); \ then true; else exit 1; fi; \ @@ -986,7 +986,7 @@ $(DO_X): if (cd $(TARGET_SUBDIR)/$$i; \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ - "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \ + "`echo "RANLIB=$${RANLIB}" | sed -e s/.*=$$/XFOO=/`" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ $${target}); \ then true; else exit 1; fi; \