aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Howell <chowell@redhat.com>2001-03-23 23:59:17 +0000
committerDJ Delorie <dj@gcc.gnu.org>2001-03-23 18:59:17 -0500
commit7238de5c34318c3f5e60a0b2021e54ffd40c8e57 (patch)
tree13d09fec9422bc3f73ebb5f8464aa36c7d4b6664
parentf1a0345cf6f425df0b5b49f1a5de97cca2232c03 (diff)
downloadgcc-7238de5c34318c3f5e60a0b2021e54ffd40c8e57.zip
gcc-7238de5c34318c3f5e60a0b2021e54ffd40c8e57.tar.gz
gcc-7238de5c34318c3f5e60a0b2021e54ffd40c8e57.tar.bz2
Makefile.in (DO_X): Do not backslash single-quotes in backquotes (two places).
* Makefile.in (DO_X): Do not backslash single-quotes in backquotes (two places). From-SVN: r40796
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 730aff9..9b452e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2001-03-22 Colin Howell <chowell@redhat.com>
- * Makefile.in (DO_X): Do not backslash single-quotes in backquotes.
+ * Makefile.in (DO_X): Do not backslash single-quotes in
+ backquotes (two places).
2001-03-22 Alexandre Oliva <aoliva@redhat.com>
diff --git a/Makefile.in b/Makefile.in
index 17c9c68..e9a8e21 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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; \