diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-13 08:54:38 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-13 08:54:38 +0000 |
commit | b53404d2708da11f47672e789e86c96bfe41a64d (patch) | |
tree | 0e8369cd016c28d9c0ad9c9e01f26be758d2f946 /gas | |
parent | 30189626aabb90f7b1b5eff71240647ac4534c9b (diff) | |
download | gdb-b53404d2708da11f47672e789e86c96bfe41a64d.zip gdb-b53404d2708da11f47672e789e86c96bfe41a64d.tar.gz gdb-b53404d2708da11f47672e789e86c96bfe41a64d.tar.bz2 |
make the stage link a soft one
Diffstat (limited to 'gas')
-rw-r--r-- | gas/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index ad33f73..1a3401c 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -510,17 +510,17 @@ bootstrap3: force stage1: force -mkdir stage1 -mv $(STAGESTUFF) stage1 - if [ ! -f stage1/as ] ; then (cd stage1 ; ln as.new as) ; fi + if [ ! -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 as.new as) ; fi + if [ ! -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 as.new as) ; fi + if [ ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi against=stage2 |