From efbfb612f4bda4e9f951b3fcd8de8f2b60284b51 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 15 Sep 1992 23:27:10 +0000 Subject: [PATCH] Changes to make an installed cross-compiler find everything correctly. Tue Sep 15 15:32:02 1992 Ian Lance Taylor (ian@cygnus.com) * Makefile.in (install): if $(tooldir) exists, install as in $(tooldir)/bin. --- gas/ChangeLog | 5 +++++ gas/Makefile.in | 12 ++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 31a41f59bfd..6394d8db0d7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 15 15:32:02 1992 Ian Lance Taylor (ian@cygnus.com) + + * Makefile.in (install): if $(tooldir) exists, install as in + $(tooldir)/bin. + Sun Sep 13 20:30:10 1992 Ian Lance Taylor (ian@cygnus.com) * Added WARN_SIGNED_OVERFLOW_WORD define to give an error if any diff --git a/gas/Makefile.in b/gas/Makefile.in index affef2ea8c4..04042b3211e 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -32,7 +32,7 @@ program_transform_name = exec_prefix = $(prefix) bindir = $(exec_prefix)/bin libdir = $(exec_prefix)/lib -tooldir = $(libdir) +tooldir = $(libdir)/$(target_alias) datadir = $(prefix)/lib mandir = $(prefix)/man @@ -358,9 +358,13 @@ install: -n=`t='$(program_transform_name)'; echo as | sed -e "" $$t`; \ rm -f $(bindir)/$$n; \ $(INSTALL_PROGRAM) as.new $(bindir)/$$n; \ - rm -f $(tooldir)/as; \ - ln $(bindir)/$$n $(tooldir)/as || cp $(bindir)/$$n $(tooldir)/as; \ - $(INSTALL_DATA) $(srcdir)/doc/as.1 $(man1dir)/$$n.1 + $(INSTALL_DATA) $(srcdir)/doc/as.1 $(man1dir)/$$n.1; \ + if [ -d $(tooldir) ]; then \ + if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \ + rm -f $(tooldir)/bin/as; \ + ln $(bindir)/$$n $(tooldir)/bin/as \ + || $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as; \ + else true; fi # Cancel installation by deleting the installed files. uninstall: -- 2.30.2