diff options
author | Maciej Wolny <maciej.wolny@codethink.co.uk> | 2018-06-05 11:53:51 +0100 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2018-06-18 12:05:05 +0300 |
commit | dae2a3dd0910c82e2c0030dfa019ffb23e35686c (patch) | |
tree | d06ca179adef471ccc4693fa10d86c8d579aadd8 | |
parent | c5f0f1a739aa1502d38915f1f17716b68227c300 (diff) |
Makefile.am: add include dir for AC_CONFIG_MACRO_DIR to work
da331647269ee9d73c4008ae901d107320bdc8d1 added a compatiblity macro for
old versions of pkg-config. However, the file in which that macro
resides was not included. From the autoconf docs: "Note that if you use
aclocal from Automake to generate aclocal.m4, you must also set
ACLOCAL_AMFLAGS = -I dir in your top-level Makefile.am.".
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4b9a901..1aa13cf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 + unstable_protocols = \ unstable/pointer-gestures/pointer-gestures-unstable-v1.xml \ unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml \ |