diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-09-06 14:07:10 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-09-06 14:09:41 +1000 |
commit | fd7a2dec652b9efc8e97f03f118f935dce732c60 (patch) | |
tree | 7a281a96e52311decd2a90f085a9efdc84a9b9ff /Makefile.in | |
parent | 00865c29690003b4523cc09a0e104724b9f911a4 (diff) |
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 'Makefile.in')
-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) | |||
156 | $(LIBSSH_OBJS): Makefile.in config.h | 156 | $(LIBSSH_OBJS): Makefile.in config.h |
157 | $(SSHOBJS): Makefile.in config.h | 157 | $(SSHOBJS): Makefile.in config.h |
158 | $(SSHDOBJS): Makefile.in config.h | 158 | $(SSHDOBJS): Makefile.in config.h |
159 | configure-check: configure | 159 | configure-check: $(srcdir)/configure |
160 | 160 | ||
161 | configure: configure.ac aclocal.m4 | 161 | $(srcdir)/configure: configure.ac aclocal.m4 |
162 | @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 | 162 | @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 |
163 | @exit 1 | 163 | @exit 1 |
164 | 164 | ||