- (dtucker) [regress/Makefile] AIX's make doesn't like " +=", so replace
with vanilla "=". Hopefully everybody's "make" will be happy with that.
This commit is contained in:
parent
b12d16fd00
commit
7b6cb5c5ef
|
@ -2,6 +2,8 @@
|
||||||
- (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
|
- (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
|
||||||
the regression tests from running with Solaris' make. Patch from Brian
|
the regression tests from running with Solaris' make. Patch from Brian
|
||||||
Poole (raj at cerias.purdue.edu).
|
Poole (raj at cerias.purdue.edu).
|
||||||
|
- (dtucker) [regress/Makefile] AIX's make doesn't like " +=", so replace
|
||||||
|
with vanilla "=".
|
||||||
|
|
||||||
20030913
|
20030913
|
||||||
- (dtucker) [regress/agent-timeout.sh] Timeout of 5 sec is borderline for
|
- (dtucker) [regress/agent-timeout.sh] Timeout of 5 sec is borderline for
|
||||||
|
@ -1091,4 +1093,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.2990 2003/09/14 01:40:35 dtucker Exp $
|
$Id: ChangeLog,v 1.2991 2003/09/14 03:16:55 dtucker Exp $
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
|
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
|
||||||
tests: $(REGRESS_TARGETS)
|
tests: $(REGRESS_TARGETS)
|
||||||
|
|
||||||
CLEANFILES += t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2
|
|
||||||
clean:
|
clean:
|
||||||
for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
|
for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
|
||||||
distclean: clean
|
distclean: clean
|
||||||
|
@ -36,7 +35,8 @@ LTESTS= connect \
|
||||||
forwarding
|
forwarding
|
||||||
|
|
||||||
USER!= id -un
|
USER!= id -un
|
||||||
CLEANFILES += authorized_keys_${USER} known_hosts pidfile \
|
CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
|
||||||
|
authorized_keys_${USER} known_hosts pidfile \
|
||||||
ssh_config ssh_proxy sshd_config sshd_proxy \
|
ssh_config ssh_proxy sshd_config sshd_proxy \
|
||||||
rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
|
rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
|
||||||
rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
|
rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
|
||||||
|
|
Loading…
Reference in New Issue