diff options
author | Keith Packard <keithp@keithp.com> | 2015-04-17 11:35:37 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-04-17 11:35:37 -0700 |
commit | c66dc19c2d05a3a59320b9111dd50f077bf7315e (patch) | |
tree | 04beeddfcc6d21270ca3ed81588c0f88f6301c5b | |
parent | a38c5027dfab030fc4dc89d7daa0f1e8dd9863a1 (diff) |
Make libtool happier
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3972ddb..7cc447a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,6 +26,8 @@ pkgconfig_DATA = xpresent.pc MAINTAINERCLEANFILES = ChangeLog INSTALL +ACLOCAL_AMFLAGS=-I m4 + .PHONY: ChangeLog INSTALL INSTALL: @@ -9,4 +9,4 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +$srcdir/configure "$@" diff --git a/configure.ac b/configure.ac index 51d3f96..a88ca7f 100644 --- a/configure.ac +++ b/configure.ac @@ -36,6 +36,8 @@ AC_INIT(libXpresent, [1.0.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXpresent]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_AUX_DIR([.]) +AC_CONFIG_MACRO_DIR([m4]) # Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) |