Commit f9ecd05b authored by lauras's avatar lauras
Browse files

	* Makefile.in (DO_X): Quote nested quotes.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40631 138bc75d-0d04-0410-961f-82ee72b054a4
parent 43dd9cb8
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.
......
......@@ -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; \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment