diff options
author | Sebastian Andrzej Siewior <sebastian@breakpoint.cc> | 2020-09-05 17:50:02 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-09-11 05:18:42 +0200 |
commit | a2f3ae386b5f7938ed3c565ad71f30c4f7f010f1 (patch) | |
tree | b4ed82bd7aac63715a9f86a98c605d7fb168c7dc /Makefile.in | |
parent | Remove HAVE_MMAP and BROKEN_MMAP (diff) | |
download | openssh-a2f3ae386b5f7938ed3c565ad71f30c4f7f010f1.tar.xz openssh-a2f3ae386b5f7938ed3c565ad71f30c4f7f010f1.zip |
Move the local m4 macros
The `aclocal' step is skipped during `autoreconf' because aclocal.m4 is
present.
Move the current aclocal.m4 which contains local macros into the m4/
folder. With this change the aclocal.m4 will be re-created during
changes to the m4/ macro.
This is needed so the `aclocal' can fetch m4 macros from the system if
they are references in the configure script. This is a prerequisite to
use PKG_CHECK_MODULES.
Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6e72136c5..acfb919da 100644 --- a/Makefile.in +++ b/Makefile.in @@ -187,7 +187,7 @@ $(SSHOBJS): Makefile.in config.h $(SSHDOBJS): Makefile.in config.h configure-check: $(srcdir)/configure -$(srcdir)/configure: configure.ac aclocal.m4 +$(srcdir)/configure: configure.ac $(srcdir)/m4/*.m4 @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 @exit 1 |