summaryrefslogtreecommitdiff
path: root/configure.ac.in
diff options
context:
space:
mode:
authorEric Koegel <eric.koegel@gmail.com>2014-06-28 21:10:11 +0300
committerEric Koegel <eric.koegel@gmail.com>2014-06-28 21:13:23 +0300
commit5cfea56d996e164c166db90aec5e50ca88baab46 (patch)
treeaedade50009f018adb525e5447144b747e3395a9 /configure.ac.in
parente38cc9994c07fa6363d4fd07b3e4afd0b990aa3e (diff)
downloadixfce4-power-manager-5cfea56d996e164c166db90aec5e50ca88baab46.tar.gz
Fix make distcheck
This is broken subdir-objects is currently broken in automake. See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928 for the bug status, enabling it will cause xfpm to fail a make distcheck build.
Diffstat (limited to 'configure.ac.in')
-rw-r--r--configure.ac.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac.in b/configure.ac.in
index d9ca35ba..c4149d2f 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -9,7 +9,9 @@ m4_define([xfpm_version], [xfpm_version_major().xfpm_version_minor().xfpm_versio
AC_INIT([xfce4-power-manager],[xfpm_version],[http://bugzilla.xfce.org/])
AC_PREREQ([2.69])
-AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar no-dist-gzip subdir-objects])
+# subdir-objects is currently broken, see
+# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928
+AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar no-dist-gzip])
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE()
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])