diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-06-23 19:01:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-06-23 19:01:50 +0000 |
commit | 2d93867897e40a510f0b428dca6fc33531eb304a (patch) | |
tree | 984385f4c560b091d68ac34ca2d0faf3bc96303d /binutils/Makefile.am | |
parent | 59bbabf5c021194d194255fe30b4147e93273671 (diff) | |
download | gdb-2d93867897e40a510f0b428dca6fc33531eb304a.zip gdb-2d93867897e40a510f0b428dca6fc33531eb304a.tar.gz gdb-2d93867897e40a510f0b428dca6fc33531eb304a.tar.bz2 |
Tue Jun 23 14:55:05 1998 Mike Stump <mrs@wrs.com>
* Makefile.am (install-exec-local): Don't let EXEEXT interfere
with the program transform name.
* Makefile.in: Rebuild.
Diffstat (limited to 'binutils/Makefile.am')
-rw-r--r-- | binutils/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/Makefile.am b/binutils/Makefile.am index c4529b2..300241f 100644 --- a/binutils/Makefile.am +++ b/binutils/Makefile.am @@ -157,7 +157,7 @@ objcopy_SOURCES = objcopy.c not-strip.c $(WRITE_DEBUG_SRCS) $(BULIBS) strings_SOURCES = strings.c $(BULIBS) readelf_SOURCES = readelf.c version.c -readelf_LDADD = $(INTLLIBS) +readelf_LDADD = $(INTLLIBS) $(LIBIBERTY) strip_new_SOURCES = objcopy.c is-strip.c $(WRITE_DEBUG_SRCS) $(BULIBS) @@ -328,8 +328,8 @@ CLEANFILES = dep.sed .dep .dep1 install-exec-local: $(bin_PROGRAMS) $(noinst_PROGRAMS) @list='$(noinst_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ - echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`"; \ - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`; \ + echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ + $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done $(mkinstalldirs) $(tooldir)/bin |