diff options
author | Thomas Haller <thaller@redhat.com> | 2023-08-29 08:28:25 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-08-29 08:48:22 (GMT) |
commit | f66383a453dc1ddf6ff8540b234eef13920eebac (patch) | |
tree | afa40de84685534f8290c5a8990909ef4a226b08 | |
parent | e4402a4c23a912edf96c2b1b5cbd36f85b2320bc (diff) | |
download | libnl-f66383a453dc1ddf6ff8540b234eef13920eebac.zip libnl-f66383a453dc1ddf6ff8540b234eef13920eebac.tar.gz libnl-f66383a453dc1ddf6ff8540b234eef13920eebac.tar.bz2 |
build: avoid aclocal warning about missing "m4" directory
We get this warning:
aclocal: warning: couldn't open directory 'm4': No such file or directory
Avoid it, by letting "doc/configure.ac" use the top-level m4 directory
too.
-rw-r--r-- | doc/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/configure.ac b/doc/configure.ac index 4fb3cc3..5e9f6ff 100644 --- a/doc/configure.ac +++ b/doc/configure.ac @@ -4,7 +4,7 @@ # AC_INIT(libnl-doc, [3.7.0], [http://www.infradead.org/~tgr/libnl/]) -AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_MACRO_DIR([../m4]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)], []) |