aboutsummaryrefslogtreecommitdiff
path: root/build-all.mk
diff options
context:
space:
mode:
authorAngela Marie Thomas <angela@cygnus>1996-03-22 21:50:27 +0000
committerAngela Marie Thomas <angela@cygnus>1996-03-22 21:50:27 +0000
commit3b7776b5c61991b3de446240f2d4b612054b30c7 (patch)
tree2d3599b434a9e9e91e5fc5fa34d9f26f80a4863d /build-all.mk
parent9647b1eac419856eea08338225112fef717f0d6f (diff)
downloadfsf-binutils-gdb-3b7776b5c61991b3de446240f2d4b612054b30c7.zip
fsf-binutils-gdb-3b7776b5c61991b3de446240f2d4b612054b30c7.tar.gz
fsf-binutils-gdb-3b7776b5c61991b3de446240f2d4b612054b30c7.tar.bz2
change [ -d foo ] to test -d foo
Diffstat (limited to 'build-all.mk')
-rw-r--r--build-all.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-all.mk b/build-all.mk
index 804927f..f1ed6ee 100644
--- a/build-all.mk
+++ b/build-all.mk
@@ -387,7 +387,7 @@ endif
all-emacs:
@echo build started at `date`
- [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ test -d $(INSTALLDIR) || mkdir $(INSTALLDIR)
-rm -f $(ROOTING)/$(RELEASE_TAG)
ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
$(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1 > $(canonhost)-emacs-native-log 2>&1
@@ -396,7 +396,7 @@ all-emacs:
all-cygnus:
@echo build started at `date`
- [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ test -d $(INSTALLDIR) || mkdir $(INSTALLDIR)
-rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
#
# The following line to be used during regular progressive builds
@@ -434,7 +434,7 @@ all-cygnus:
native:
@echo build started at `date`
- [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ test -d $(INSTALLDIR) || mkdir $(INSTALLDIR)
-rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
# -rm -f $(ROOTING)/progressive-beta && ln -s $(RELEASE_TAG) $(ROOTING)/progressive-beta
$(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log)
@@ -469,7 +469,7 @@ build-latest:
@echo done at `date`
all-native:
- [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ test -d $(INSTALLDIR) || mkdir $(INSTALLDIR)
rm -f $(ROOTING)/$(RELEASE_TAG)
ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
@for i in $(TARGETS) ; do \
@@ -479,7 +479,7 @@ all-native:
done
all-cross:
- [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ test -d $(INSTALLDIR) || mkdir $(INSTALLDIR)
rm -f $(ROOTING)/$(RELEASE_TAG)
ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
@for i in $(TARGETS) ; do \