aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-05-18 17:11:19 +0000
committerIan Lance Taylor <ian@airs.com>1994-05-18 17:11:19 +0000
commitac7f7dfeb9d437105e5813a19eb8a8f5570d4461 (patch)
treee5eaecbbf2fd0ec455c5ef9543da61d613fae509 /gas/Makefile.in
parent66957ce49a472f8367e3ae3758aa2c048163a8ee (diff)
downloadgdb-ac7f7dfeb9d437105e5813a19eb8a8f5570d4461.zip
gdb-ac7f7dfeb9d437105e5813a19eb8a8f5570d4461.tar.gz
gdb-ac7f7dfeb9d437105e5813a19eb8a8f5570d4461.tar.bz2
* Makefile.in (install): Redirect ln output to /dev/null. If ln
fails on gasp, install gasp.new, not gasp.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 7473c7e..ae98eb5 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -50,7 +50,7 @@ infodir = $(prefix)/info
includedir = $(prefix)/include
docdir = $(datadir)/doc
-VERSION=cygnus-2.2.1
+VERSION=cygnus-2.2.90
SHELL = /bin/sh
@@ -457,7 +457,7 @@ install:
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 \
+ ln $(bindir)/$$n $(tooldir)/bin/as >/dev/null 2>/dev/null \
|| $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as; \
else true; fi
srcroot=`cd $(srcroot); pwd`; export srcroot; \
@@ -466,8 +466,8 @@ install:
if [ -d $(tooldir) ]; then \
if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
rm -f $(tooldir)/bin/gasp; \
- ln $(bindir)/$$n $(tooldir)/bin/gasp \
- || $(INSTALL_PROGRAM) gasp $(tooldir)/bin/gasp; \
+ ln $(bindir)/$$n $(tooldir)/bin/gasp >/dev/null 2>/dev/null \
+ || $(INSTALL_PROGRAM) gasp.new $(tooldir)/bin/gasp; \
else true; fi
# Cancel installation by deleting the installed files.
@@ -482,22 +482,22 @@ uninstall:
tags TAGS: force
etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in
-
+
bootstrap: as.new force
$(MAKE) stage1
- $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
+ $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
$(MAKE) stage2
- $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
+ $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
$(MAKE) comparison against=stage2
bootstrap2: force
- $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
+ $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
$(MAKE) stage2
- $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
+ $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
$(MAKE) comparison against=stage2
bootstrap3: force
- $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
+ $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
$(MAKE) comparison against=stage2
# Copy the object files from a particular stage into a subdirectory.