From: Laurynas Biveinis Date: Mon, 19 Mar 2001 19:12:04 +0000 (+0000) Subject: * Makefile.in (DO_X): Quote nested quotes. X-Git-Tag: prereleases/libstdc++-2.92~336 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=085072bbd398e257f6fe28ff2f63dd2a1c95d435;p=thirdparty%2Fgcc.git * Makefile.in (DO_X): Quote nested quotes. From-SVN: r40631 --- diff --git a/ChangeLog b/ChangeLog index 2b203bb71eff..ca43b4b08e07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-03-18 Laurynas Biveinis + + * Makefile.in (DO_X): Quote nested quotes. + 2001-03-18 Alan Modra * MAINTAINERS: Add myself to write after approval list. diff --git a/Makefile.in b/Makefile.in index 456c982dc8e7..f2aad0036def 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; \