Makefile.in (program_transform_cross_name): Clean up "-e" confusion.

* Makefile.in (program_transform_cross_name): Clean up "-e" confusion.
        (GCC_INSTALL_NAME, GCC_CROSS_NAME): Likewise.

From-SVN: r16667
This commit is contained in:
Jeffrey A Law 1997-11-22 07:55:18 +00:00 committed by Jeff Law
parent 6aec4adf46
commit ef85603ebd
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Fri Nov 21 15:20:05 1997 Jeffrey A Law (law@cygnus.com)
* Makefile.in (program_transform_cross_name): Clean up "-e" confusion.
(GCC_INSTALL_NAME, GCC_CROSS_NAME): Likewise.
Fri Nov 21 19:37:40 1997 Andrew Cagney <cagney@b1.cygnus.com>
* config/mips/elf64.h (MULTILIB_DEFAULTS): Test for

View File

@ -157,7 +157,7 @@ ENQUIRE_LDFLAGS = $(LDFLAGS)
# Sed command to transform gcc to installed name. Overwritten by configure.
program_transform_name = @program_transform_name@
program_transform_cross_name = -e s,^,$(target_alias)-,
program_transform_cross_name = s,^,$(target_alias)-,
# Tools to use when building a cross-compiler.
# These are used because `configure' appends `cross-make'
@ -403,10 +403,10 @@ HOST_MALLOC=$(MALLOC)
HOST_OBSTACK=$(OBSTACK)
# Actual name to use when installing a native compiler.
GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed $$t`
GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed -e $$t`
# Actual name to use when installing a cross-compiler.
GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed $$t`
GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed -e $$t`
# Choose the real default target.
ALL=all.internal