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.
This commit is contained in:
parent
94a4a00523
commit
efbfb612f4
2 changed files with 13 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue