Makefile.in (AR_FOR_TARGET, [...]): Fix target name substitution.
* Makefile.in (AR_FOR_TARGET, RANLIB_FOR_TARGET): Fix target name substitution. From-SVN: r30190
This commit is contained in:
parent
2af0ac2840
commit
35f86a5003
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* tree.h (BLOCK_TYPE_TAGS): Remove.
|
||||
|
|
|
@ -187,7 +187,7 @@ AR_FOR_TARGET = ` \
|
|||
if [ "$(host_canonical)" = "$(target)" ] ; then \
|
||||
echo ar; \
|
||||
else \
|
||||
t='$(program_transform_name)'; echo ar | sed -e $$t ; \
|
||||
t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
|
||||
fi; \
|
||||
fi`
|
||||
AR_FLAGS_FOR_TARGET = rc
|
||||
|
@ -198,7 +198,7 @@ RANLIB_FOR_TARGET = ` \
|
|||
if [ "$(host_canonical)" = "$(target)" ] ; then \
|
||||
echo ranlib; \
|
||||
else \
|
||||
t='$(program_transform_name)'; echo ranlib | sed -e $$t ; \
|
||||
t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
|
||||
fi; \
|
||||
fi`
|
||||
RANLIB_TEST_FOR_TARGET = \
|
||||
|
|
Loading…
Add table
Reference in a new issue