diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-09-06 06:07:10 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-09-06 06:09:41 +0200 |
commit | fd7a2dec652b9efc8e97f03f118f935dce732c60 (patch) | |
tree | 7a281a96e52311decd2a90f085a9efdc84a9b9ff /Makefile.in | |
parent | upstream: better error code for bad arguments; inspired by (diff) | |
download | openssh-fd7a2dec652b9efc8e97f03f118f935dce732c60.tar.xz openssh-fd7a2dec652b9efc8e97f03f118f935dce732c60.zip |
Provide explicit path to configure-check.
On some platforms (at least OpenBSD) make won't search VPATH for target
files, so building out-of-tree will fail at configure-check. Provide
explicit path. ok djm@
Diffstat (limited to '')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 8a450ce04..adb1977e2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -156,9 +156,9 @@ all: configure-check $(CONFIGFILES) $(MANPAGES) $(TARGETS) $(LIBSSH_OBJS): Makefile.in config.h $(SSHOBJS): Makefile.in config.h $(SSHDOBJS): Makefile.in config.h -configure-check: configure +configure-check: $(srcdir)/configure -configure: configure.ac aclocal.m4 +$(srcdir)/configure: configure.ac aclocal.m4 @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 @exit 1 |