summaryrefslogtreecommitdiff
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
parentb7efb630f66f0723a1f06c0e9178fa7c03bfec7b (diff)
[Makefile.in] only mkdir regress if it does not exist.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f56ff7a61..914995c9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
120030912 120030912
2 - (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then". 2 - (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
3 - (tim) [Makefile.in] only mkdir regress if it does not exist.
3 4
420030911 520030911
5 - (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after 6 - (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
@@ -1073,4 +1074,4 @@
1073 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1074 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1074 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1075 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1075 1076
1076$Id: ChangeLog,v 1.2983 2003/09/12 18:20:32 tim Exp $ 1077$Id: ChangeLog,v 1.2984 2003/09/12 20:02:16 tim Exp $
diff --git a/Makefile.in b/Makefile.in
index 5d72ee999..c10b1e779 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.247 2003/09/07 02:34:54 dtucker Exp $ 1# $Id: Makefile.in,v 1.248 2003/09/12 20:02:16 tim Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -372,7 +372,7 @@ uninstall:
372 372
373tests: $(TARGETS) 373tests: $(TARGETS)
374 BUILDDIR=`pwd`; \ 374 BUILDDIR=`pwd`; \
375 mkdir -p `pwd`/regress; \ 375 [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \
376 TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ 376 TEST_SSH_SSH="$${BUILDDIR}/ssh"; \
377 TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \ 377 TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \
378 TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \ 378 TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \