summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-09-12 13:02:16 -0700
committerTim Rice <tim@multitalents.net>2003-09-12 13:02:16 -0700
commitec28ca16b1bd74e8954e3c4d13364baadc1382a4 (patch)
treecbca6206379889e95bafa09d1862de6d7ad98fe1 /Makefile.in
parentb7efb630f66f0723a1f06c0e9178fa7c03bfec7b (diff)
[Makefile.in] only mkdir regress if it does not exist.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 5d72ee99..c10b1e77 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.247 2003/09/07 02:34:54 dtucker Exp $
+# $Id: Makefile.in,v 1.248 2003/09/12 20:02:16 tim Exp $
# uncomment if you run a non bourne compatable shell. Ie. csh
#SHELL = @SH@
@@ -372,7 +372,7 @@ uninstall:
tests: $(TARGETS)
BUILDDIR=`pwd`; \
- mkdir -p `pwd`/regress; \
+ [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \
TEST_SSH_SSH="$${BUILDDIR}/ssh"; \
TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \
TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \