diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-04-15 17:45:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-04-15 17:45:20 +0000 |
commit | 4066f85fd5d384f508eb4ce5fed1fbedcdcdf3b6 (patch) | |
tree | 0b8301126d049efdffe037b5ab7dfa05287e6503 /binutils | |
parent | ba69384dc8979b5dbef936649d5a7fecfce6e4f0 (diff) | |
download | gdb-4066f85fd5d384f508eb4ce5fed1fbedcdcdf3b6.zip gdb-4066f85fd5d384f508eb4ce5fed1fbedcdcdf3b6.tar.gz gdb-4066f85fd5d384f508eb4ce5fed1fbedcdcdf3b6.tar.bz2 |
* Makefile.in (INSTALL): Set to @INSTALL@.
(INSTALL_XFORM, INSTALL_XFORM1): Remove.
(install): Depend upon installdirs. Use $(program_transform_name)
directly, rather than using $(INSTALL_XFORM) and
$(INSTALL_XFORM1).
(installdirs): New target.
(install-info): Run mkinstalldirs.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 12 | ||||
-rw-r--r-- | binutils/Makefile.in | 25 |
2 files changed, 27 insertions, 10 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4996953..5a89d50 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,17 @@ +Tue Apr 15 13:42:22 1997 Ian Lance Taylor <ian@cygnus.com> + + * Makefile.in (INSTALL): Set to @INSTALL@. + (INSTALL_XFORM, INSTALL_XFORM1): Remove. + (install): Depend upon installdirs. Use $(program_transform_name) + directly, rather than using $(INSTALL_XFORM) and + $(INSTALL_XFORM1). + (installdirs): New target. + (install-info): Run mkinstalldirs. + Mon Apr 14 11:52:39 1997 Ian Lance Taylor <ian@cygnus.com> + * Makefile.in (INSTALL): Change install.sh to install-sh. + From Thomas Graichen <graichen@rzpd.de>: * Makefile.in: Always use $(SHELL) when running move-if-change. * configure.in: Use ${CONFIG_SHELL} when running $ac_config_sub. diff --git a/binutils/Makefile.in b/binutils/Makefile.in index c3431d0..985e226 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -45,11 +45,9 @@ includedir = @includedir@ SHELL = /bin/sh -INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c +INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ -INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' -INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1 -m 644 AR = ar AR_FLAGS = rc @@ -542,19 +540,22 @@ etags tags: TAGS TAGS: force etags $(INCDIR)/*.h $(srcdir)/*.[hc] -install: all +.PHONY: install installdirs + +install: all installdirs for i in $(PROGS) ; do \ - $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \ + n=`echo $$i | sed -e 's/.new//' | sed '$(program_transform_name)'`; \ + $(INSTALL_PROGRAM) $$i $(bindir)/$$n; \ done for i in $(MANPAGES) ; do \ - $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \ + n=`echo $$i | sed '$(program_transform_name)'`; \ + $(INSTALL_DATA) $(srcdir)/$$i.1 $(man1dir)/$$n.1; \ done if [ x$(DEMANGLER_PROG) != x ]; then \ - $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1; \ + n=`echo $(DEMANGLER_PROG) | sed '$(program_transform_name)'`; \ + $(INSTALL_DATA) $(DEMANGLER_PROG).1 $(man1dir)/$$n.1; \ fi - test -d $(tooldir) || mkdir $(tooldir) - test -d $(tooldir)/bin || mkdir $(tooldir)/bin - for i in $(TOOL_PROGS) ; do \ + for i in $(TOOL_PROGS); do \ if [ -f $$i ]; then \ j=`echo $$i | sed -e 's/.new//'`; \ rm -f $(tooldir)/bin/$$j; \ @@ -565,10 +566,14 @@ install: all fi; \ done +installdirs: + $(SHELL) $(srcdir)/../mkinstalldirs $(bindir) $(man1dir) $(tooldir)/bin + # This little path search is required because in the FSF net releases, # the info files are included in the source tree, and that may not be # the same as the build directory. install-info: binutils.info + $(SHELL) $(srcdir)/../mkinstalldirs $(infodir) if [ -r binutils.info ]; then \ dir=. ; \ else \ |