- (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to

self: make changes to Makefile.in next time, not the generated Makefile).
This commit is contained in:
Damien Miller 2008-03-13 12:05:40 +11:00
parent af78493bba
commit 6642996134
3 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,8 @@
20080311
20080313
- (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to
self: make changes to Makefile.in next time, not the generated Makefile).
20080312
- (djm) OpenBSD CVS Sync
- dtucker@cvs.openbsd.org 2007/10/29 06:57:13
[regress/Makefile regress/localcommand.sh]
@ -3740,4 +3744,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4870 2008/03/12 13:17:00 djm Exp $
$Id: ChangeLog,v 1.4871 2008/03/13 01:05:40 djm Exp $

View File

@ -1,4 +1,4 @@
# $Id: Makefile.in,v 1.287 2008/02/10 11:44:20 djm Exp $
# $Id: Makefile.in,v 1.288 2008/03/13 01:05:40 djm Exp $
# uncomment if you run a non bourne compatable shell. Ie. csh
#SHELL = @SH@
@ -378,7 +378,7 @@ uninstall:
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
tests: $(TARGETS)
tests interop-tests: $(TARGETS)
BUILDDIR=`pwd`; \
[ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \
[ -f `pwd`/regress/Makefile ] || \

View File

@ -4,7 +4,7 @@ REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
tests: $(REGRESS_TARGETS)
# Interop tests are not run by default
interop: t-exec-interop
interop interop-tests: t-exec-interop
clean:
for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done