Changes to make an installed cross-compiler find everything correctly.
[binutils-gdb.git] / gas / Makefile.in
index affef2ea8c478857d50573cc58a5aa0c9391c313..04042b3211e39f101f5e0ae0df751a83a2270e6d 100644 (file)
@@ -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: