aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2014-10-29 21:15:35 +0200
committerLasse Collin <lasse.collin@tukaani.org>2014-10-29 21:15:35 +0200
commitc923b140b27d1a055db6284e10fd546ad1a7fcdb (patch)
tree9be8130b208f7d44c7bdf014b005565a5d3834e5 /configure.ac
parentTranslations: Update the Italian translation. (diff)
downloadxz-c923b140b27d1a055db6284e10fd546ad1a7fcdb.tar.xz
Build: Prepare to support Automake's subdir-objects.
Due to a bug in Automake, subdir-objects won't be enabled for now. http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354 Thanks to Daniel Richard G. for the original patches.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e41979bb..12c0117a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -482,7 +482,12 @@ fi
echo
echo "Initializing Automake:"
-AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests])
+# We don't use "subdir-objects" yet because it breaks "make distclean" when
+# dependencies are enabled (as of Automake 1.14.1) due to this bug:
+# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354
+# The -Wno-unsupported is used to silence warnings about missing
+# "subdir-objects".
+AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests -Wno-unsupported])
AC_PROG_LN_S
AC_PROG_CC_C99