Commit 35f86a50 by Marc Espie Committed by Jeff Law

Makefile.in (AR_FOR_TARGET, [...]): Fix target name substitution.

        * Makefile.in (AR_FOR_TARGET, RANLIB_FOR_TARGET):  Fix target name
        substitution.

From-SVN: r30190
parent 2af0ac28
Tue Oct 26 02:48:32 1999 Marc Espie <espie@cvs.openbsd.org>
* Makefile.in (AR_FOR_TARGET, RANLIB_FOR_TARGET): Fix target name
substitution.
Tue Oct 26 01:27:32 1999 Mark Mitchell <mark@codesourcery.com> Tue Oct 26 01:27:32 1999 Mark Mitchell <mark@codesourcery.com>
* tree.h (BLOCK_TYPE_TAGS): Remove. * tree.h (BLOCK_TYPE_TAGS): Remove.
......
...@@ -187,7 +187,7 @@ AR_FOR_TARGET = ` \ ...@@ -187,7 +187,7 @@ AR_FOR_TARGET = ` \
if [ "$(host_canonical)" = "$(target)" ] ; then \ if [ "$(host_canonical)" = "$(target)" ] ; then \
echo ar; \ echo ar; \
else \ else \
t='$(program_transform_name)'; echo ar | sed -e $$t ; \ t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
fi; \ fi; \
fi` fi`
AR_FLAGS_FOR_TARGET = rc AR_FLAGS_FOR_TARGET = rc
...@@ -198,7 +198,7 @@ RANLIB_FOR_TARGET = ` \ ...@@ -198,7 +198,7 @@ RANLIB_FOR_TARGET = ` \
if [ "$(host_canonical)" = "$(target)" ] ; then \ if [ "$(host_canonical)" = "$(target)" ] ; then \
echo ranlib; \ echo ranlib; \
else \ else \
t='$(program_transform_name)'; echo ranlib | sed -e $$t ; \ t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
fi; \ fi; \
fi` fi`
RANLIB_TEST_FOR_TARGET = \ RANLIB_TEST_FOR_TARGET = \
......
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