From: K. Richard Pixley Date: Wed, 13 Nov 1991 08:54:38 +0000 (+0000) Subject: make the stage link a soft one X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b53404d2708da11f47672e789e86c96bfe41a64d;p=binutils-gdb.git make the stage link a soft one --- diff --git a/gas/Makefile.in b/gas/Makefile.in index ad33f7345be..1a3401c461f 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