From 2e410706abd48d96b352ea33784be5e498a49f73 Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Thu, 7 Nov 1991 10:14:32 +0000 Subject: [PATCH] only build a link if it isn't there already --- gas/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gas/Makefile.in b/gas/Makefile.in index e076aa39235..c6779d009e2 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -510,17 +510,17 @@ bootstrap3: force stage1: force -mkdir stage1 -mv $(STAGESTUFF) stage1 - (cd stage1 ; ln as.new as) + if [ ! -f stage1/as ] ; then (cd stage1 ; ln as.new as) ; fi stage2: force -mkdir stage2 -mv $(STAGESTUFF) stage2 - (cd stage2 ; ln as.new as) + if [ ! -f stage2/as ] ; then (cd stage2 ; ln as.new as) ; fi stage3: force -mkdir stage3 -mv $(STAGESTUFF) stage3 - (cd stage3 ; ln as.new as) + if [ ! -f stage3/as ] ; then (cd stage3 ; ln as.new as) ; fi against=stage2 -- 2.30.2