aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurynas Biveinis <lauras@softhome.net>2001-03-16 18:34:03 +0000
committerLaurynas Biveinis <lauras@gcc.gnu.org>2001-03-16 18:34:03 +0000
commit69e230371807f22b3dc52ee64e87314fb61c750c (patch)
tree65c706c07f39aeb3684edbe5e374d18abb1e2c82
parent3a6ee9f4e68c4087c33a44154a106737aaaf0e7a (diff)
downloadgcc-69e230371807f22b3dc52ee64e87314fb61c750c.zip
gcc-69e230371807f22b3dc52ee64e87314fb61c750c.tar.gz
gcc-69e230371807f22b3dc52ee64e87314fb61c750c.tar.bz2
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
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 393a51c..cf4082d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-15 Laurynas Biveinis <lauras@softhome.net>
+
+ * Makefile.in (DO_X): Use double quotes for quoting
+ "RANLIB=$${RANLIB}".
+
2001-03-10 Ovidiu Predescu <ovidiu@cup.hp.com>
* MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C.
diff --git a/Makefile.in b/Makefile.in
index a20988d..456c982 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; \