diff options
author | Jonas Ådahl <jadahl@gmail.com> | 2014-07-15 23:25:28 +0200 |
---|---|---|
committer | Jonas Ådahl <jadahl@gmail.com> | 2014-07-15 23:44:50 +0200 |
commit | a474a7648d0420dfee80bb9cf020e71cbd592da3 (patch) | |
tree | 611aa54d67279e1fd57d62be3536fa15d3d4bfc7 /configure.ac | |
parent | dacc6383c71e57a5a4a71525116a42615cb56ea8 (diff) |
configure.ac: Add subdir-objects to AM_INIT_AUTOMAKE paramaters
Silences a warning when running autogen.sh.
This also adds a work-around for a bug in automake
<https://lists.gnu.org/archive/html/bug-automake/2014-01/msg00005.html>
replacing $(top_srcdir) with ../ in test/Makefile.am.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 65c915e..fd402e2 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AC_SUBST([LIBINPUT_VERSION], [libinput_version]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz]) +AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz subdir-objects]) # Before making a release, the LIBINPUT_LT_VERSION string should be # modified. |