Commit 69e23037 by Laurynas Biveinis Committed by Laurynas Biveinis

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
parent 3a6ee9f4
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> 2001-03-10 Ovidiu Predescu <ovidiu@cup.hp.com>
* MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C. * MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C.
......
...@@ -967,7 +967,7 @@ $(DO_X): ...@@ -967,7 +967,7 @@ $(DO_X):
if (cd ./$$i; \ if (cd ./$$i; \
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "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}" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
$${target}); \ $${target}); \
then true; else exit 1; fi; \ then true; else exit 1; fi; \
...@@ -986,7 +986,7 @@ $(DO_X): ...@@ -986,7 +986,7 @@ $(DO_X):
if (cd $(TARGET_SUBDIR)/$$i; \ if (cd $(TARGET_SUBDIR)/$$i; \
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "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}" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
$${target}); \ $${target}); \
then true; else exit 1; fi; \ then true; else exit 1; fi; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment