diff options
author | Colin Howell <chowell@redhat.com> | 2001-03-23 23:59:17 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2001-03-23 18:59:17 -0500 |
commit | 7238de5c34318c3f5e60a0b2021e54ffd40c8e57 (patch) | |
tree | 13d09fec9422bc3f73ebb5f8464aa36c7d4b6664 | |
parent | f1a0345cf6f425df0b5b49f1a5de97cca2232c03 (diff) | |
download | gcc-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-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -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; \ |