diff options
| author | lauras <lauras@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-16 18:34:03 +0000 |
|---|---|---|
| committer | lauras <lauras@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-16 18:34:03 +0000 |
| commit | 34690eeb186fba7de3dde514e3e7189939ffd5a8 (patch) | |
| tree | 65c706c07f39aeb3684edbe5e374d18abb1e2c82 | |
| parent | e47c8b8f0eaa11b456a8a71e6ade520061c6b5f0 (diff) | |
| download | ppe42-gcc-34690eeb186fba7de3dde514e3e7189939ffd5a8.tar.gz ppe42-gcc-34690eeb186fba7de3dde514e3e7189939ffd5a8.zip | |
* 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
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 393a51c7714..cf4082dbed1 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 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; \ |

