mirror of git://anongit.mindrot.org/openssh.git
- [Makefile.in regress/agent-getpeereid.sh] config.h is now in $BUILDDIR
not $OBJ.
This commit is contained in:
parent
9d9d44811b
commit
118576556b
|
@ -9,7 +9,7 @@
|
||||||
- [regress/reconfigure/sh] Make path to sshd fully qualified if required.
|
- [regress/reconfigure/sh] Make path to sshd fully qualified if required.
|
||||||
- [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
|
- [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
|
||||||
it). The sparse file will take less disk space too.
|
it). The sparse file will take less disk space too.
|
||||||
- [regress/sftp-cmds.sh] Ensure file used for test are readable.
|
- [regress/sftp-cmds.sh] Ensure files used for test are readable.
|
||||||
- [regress/stderr-after-eof.sh] Search for a usable checksum program.
|
- [regress/stderr-after-eof.sh] Search for a usable checksum program.
|
||||||
- [regress/sftp-badcmds.sh regress/sftp-cmds.sh regress/sftp.sh
|
- [regress/sftp-badcmds.sh regress/sftp-cmds.sh regress/sftp.sh
|
||||||
regress/ssh-com-client.sh regress/ssh-com-sftp.sh regress/stderr-data.sh
|
regress/ssh-com-client.sh regress/ssh-com-sftp.sh regress/stderr-data.sh
|
||||||
|
@ -25,6 +25,8 @@
|
||||||
use Strictmodes no, wait longer for sshd startup.
|
use Strictmodes no, wait longer for sshd startup.
|
||||||
- [regress/Makefile] Remove BSDisms.
|
- [regress/Makefile] Remove BSDisms.
|
||||||
- [regress/README.regress] Add a basic readme.
|
- [regress/README.regress] Add a basic readme.
|
||||||
|
- [Makefile.in regress/agent-getpeereid.sh] config.h is now in $BUILDDIR
|
||||||
|
not $OBJ.
|
||||||
|
|
||||||
20030903
|
20030903
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -1015,4 +1017,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.2958 2003/09/04 05:39:54 dtucker Exp $
|
$Id: ChangeLog,v 1.2959 2003/09/04 08:04:16 dtucker Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: Makefile.in,v 1.243 2003/09/04 03:41:06 dtucker Exp $
|
# $Id: Makefile.in,v 1.244 2003/09/04 08:04:16 dtucker 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@
|
||||||
|
@ -383,6 +383,7 @@ tests: $(TARGETS)
|
||||||
$(MAKE) \
|
$(MAKE) \
|
||||||
.OBJDIR="$${BUILDDIR}/regress" \
|
.OBJDIR="$${BUILDDIR}/regress" \
|
||||||
.CURDIR="`pwd`" \
|
.CURDIR="`pwd`" \
|
||||||
|
BUILDDIR="$${BUILDDIR}" \
|
||||||
OBJ="$${BUILDDIR}/regress" \
|
OBJ="$${BUILDDIR}/regress" \
|
||||||
PATH="$${BUILDDIR}:$${PATH}" \
|
PATH="$${BUILDDIR}:$${PATH}" \
|
||||||
TEST_SSH_SSH="$${TEST_SSH_SSH}" \
|
TEST_SSH_SSH="$${TEST_SSH_SSH}" \
|
||||||
|
|
|
@ -7,7 +7,7 @@ UNPRIV=nobody
|
||||||
ASOCK=${OBJ}/agent
|
ASOCK=${OBJ}/agent
|
||||||
SSH_AUTH_SOCK=/nonexistant
|
SSH_AUTH_SOCK=/nonexistant
|
||||||
|
|
||||||
if grep "#undef.*HAVE_GETPEEREID" ${OBJ}/config.h >/dev/null 2>&1
|
if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1
|
||||||
then
|
then
|
||||||
echo "skipped (not supported on this platform)"
|
echo "skipped (not supported on this platform)"
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue