diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-20 03:46:20 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-20 03:46:20 +0000 |
commit | 81f73963aee2efc167f67fe20340f62a9c4c4c92 (patch) | |
tree | 932241429af93e2ddee2381930346ffb8c60ac84 | |
parent | 8a400a1892105cb25baeb76fc292cf777cd58185 (diff) | |
download | gdb-81f73963aee2efc167f67fe20340f62a9c4c4c92.zip gdb-81f73963aee2efc167f67fe20340f62a9c4c4c92.tar.gz gdb-81f73963aee2efc167f67fe20340f62a9c4c4c92.tar.bz2 |
link as.new only if there is something to link to
-rw-r--r-- | gas/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index 1a3401c..fe9a7df 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -225,6 +225,8 @@ OBJS = \ # The real definition is under `all.internal'. all: $(ALL) +all-info: +install-info: fake-as: force - rm -f ./as.new @@ -510,17 +512,17 @@ bootstrap3: force stage1: force -mkdir stage1 -mv $(STAGESTUFF) stage1 - if [ ! -f stage1/as ] ; then (cd stage1 ; ln -s as.new as) ; fi + if [ -f stage1/as.new -a ! -f stage1/as ] ; then (cd stage1 ; ln -s as.new as) ; fi stage2: force -mkdir stage2 -mv $(STAGESTUFF) stage2 - if [ ! -f stage2/as ] ; then (cd stage2 ; ln -s as.new as) ; fi + if [ -f stage2/as.new -a ! -f stage2/as ] ; then (cd stage2 ; ln -s as.new as) ; fi stage3: force -mkdir stage3 -mv $(STAGESTUFF) stage3 - if [ ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi + if [ -f stage3/as.new -a ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi against=stage2 |