summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <tim>2013-03-07 15:37:13 +0000
committertim <tim>2013-03-07 15:37:13 +0000
commit79763a9f58c5beadfbc6ed745fbfa1561f45fbf8 (patch)
treee64c9e5c36c43b26e0918063b6a439ca30186a68
parent2df21eb1d7ec53b8ad385da54cad05c18aa0140c (diff)
downloadopenssh-79763a9f58c5beadfbc6ed745fbfa1561f45fbf8.tar.gz
- (tim) [Makefile.in] Add another missing $(EXEEXT) I should have seen 3 days
ago.
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f21ea92..728de6ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
currently using.
- (dtucker) [defines.h] Remove SIZEOF_CHAR bits since the test for it
was removed in configure.ac rev 1.481 as it was redundant.
+ - (tim) [Makefile.in] Add another missing $(EXEEXT) I should have seen 3 days
+ ago.
20130306
- (dtucker) [regress/forward-control.sh] Wait longer for the forwarding
diff --git a/Makefile.in b/Makefile.in
index 38ffbdc3..d327787b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.335 2013/03/05 22:23:59 tim Exp $
+# $Id: Makefile.in,v 1.336 2013/03/07 15:37:13 tim Exp $
# uncomment if you run a non bourne compatable shell. Ie. csh
#SHELL = @SH@
@@ -386,7 +386,7 @@ regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c
$(CC) $(CPPFLAGS) -o $@ $? \
$(LDFLAGS) -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
-tests interop-tests: $(TARGETS) regress/modpipe
+tests interop-tests: $(TARGETS) regress/modpipe$(EXEEXT)
BUILDDIR=`pwd`; \
[ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \
[ -f `pwd`/regress/Makefile ] || \