From bcb16384352670c4d822955af6dc3c03e3712f28 Mon Sep 17 00:00:00 2001 From: Rob Staudinger Date: Wed, 8 Feb 2012 20:55:44 +0100 Subject: [PATCH] build: Fix 'make distcheck' A few filenames in tests/twisted/tools were too long for default 'tar', call AM_INIT_AUTOMAKE with 'tar-ustar' for remedy. Also tests/twisted/Makefile.am had non-existant files in EXTRA_DIST, which prevented the dist from finishing. Remove those. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=45773 --- configure.ac | 2 +- tests/twisted/Makefile.am | 9 --------- 2 files changed, 1 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index b3679e5..0c79cbd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT(ytstenut-plugins, 0.2.0) -AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) +AM_INIT_AUTOMAKE([tar-ustar]) AM_CONFIG_HEADER(config.h) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) diff --git a/tests/twisted/Makefile.am b/tests/twisted/Makefile.am index 1b26802..cc4aac0 100644 --- a/tests/twisted/Makefile.am +++ b/tests/twisted/Makefile.am @@ -133,16 +133,7 @@ check-separate: EXTRA_DIST = \ $(TWISTED_BASIC_TESTS) \ $(TWISTED_SEPARATE_TESTS) \ - accounts/README \ - chandlers/README \ - telepathy/clients/README \ - telepathy/clients/Logger.client \ - telepathy/managers/fakecm.manager \ - telepathy/managers/onewitheverything.manager \ - telepathy/managers/README \ mcconstants.py \ - fakeclient.py \ - fakecm.py \ mctest.py \ mcservicetest.py \ salutconstants.py \ -- 1.7.7.6