diff options
author | Laurynas Biveinis <lauras@softhome.net> | 2001-03-19 19:12:04 +0000 |
---|---|---|
committer | Laurynas Biveinis <lauras@gcc.gnu.org> | 2001-03-19 19:12:04 +0000 |
commit | 085072bbd398e257f6fe28ff2f63dd2a1c95d435 (patch) | |
tree | 743bef336f89b50cb811d6a666bfa5c70bf05d67 | |
parent | 68e568c28eb6e4d15b06dc23b27168e783ce008c (diff) | |
download | gcc-085072bbd398e257f6fe28ff2f63dd2a1c95d435.zip gcc-085072bbd398e257f6fe28ff2f63dd2a1c95d435.tar.gz gcc-085072bbd398e257f6fe28ff2f63dd2a1c95d435.tar.bz2 |
* Makefile.in (DO_X): Quote nested quotes.
From-SVN: r40631
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-03-18 Laurynas Biveinis <lauras@softhome.net> + + * Makefile.in (DO_X): Quote nested quotes. + 2001-03-18 Alan Modra <alan@linuxcare.com.au> * MAINTAINERS: Add myself to write after approval list. diff --git a/Makefile.in b/Makefile.in index 456c982..f2aad00 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; \ |