summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorlauras <lauras@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-16 18:34:03 +0000
committerlauras <lauras@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-16 18:34:03 +0000
commit34690eeb186fba7de3dde514e3e7189939ffd5a8 (patch)
tree65c706c07f39aeb3684edbe5e374d18abb1e2c82 /Makefile.in
parente47c8b8f0eaa11b456a8a71e6ade520061c6b5f0 (diff)
downloadgcc-34690eeb186fba7de3dde514e3e7189939ffd5a8.tar.gz
* Makefile.in (DO_X): Use double quotes for quoting
"RANLIB=$${RANLIB}". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40557 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
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; \