mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 08:14:24 +02:00
[Makefile.in] only mkdir regress if it does not exist.
This commit is contained in:
parent
b7efb630f6
commit
ec28ca16b1
@ -1,5 +1,6 @@
|
|||||||
20030912
|
20030912
|
||||||
- (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
|
- (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
|
||||||
|
- (tim) [Makefile.in] only mkdir regress if it does not exist.
|
||||||
|
|
||||||
20030911
|
20030911
|
||||||
- (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
|
- (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
|
||||||
@ -1073,4 +1074,4 @@
|
|||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2983 2003/09/12 18:20:32 tim Exp $
|
$Id: ChangeLog,v 1.2984 2003/09/12 20:02:16 tim Exp $
|
||||||
|
@ -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
|
# uncomment if you run a non bourne compatable shell. Ie. csh
|
||||||
#SHELL = @SH@
|
#SHELL = @SH@
|
||||||
@ -372,7 +372,7 @@ uninstall:
|
|||||||
|
|
||||||
tests: $(TARGETS)
|
tests: $(TARGETS)
|
||||||
BUILDDIR=`pwd`; \
|
BUILDDIR=`pwd`; \
|
||||||
mkdir -p `pwd`/regress; \
|
[ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \
|
||||||
TEST_SSH_SSH="$${BUILDDIR}/ssh"; \
|
TEST_SSH_SSH="$${BUILDDIR}/ssh"; \
|
||||||
TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \
|
TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \
|
||||||
TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \
|
TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user