From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 035C91384B4 for ; Thu, 17 Dec 2015 03:24:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19BF121C029; Thu, 17 Dec 2015 03:24:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3781A21C026 for ; Thu, 17 Dec 2015 03:24:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4806133FE13 for ; Thu, 17 Dec 2015 03:24:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C794FCB0 for ; Thu, 17 Dec 2015 03:24:38 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1450314862.e409c177e2f92714012b7c0199f631173f4e6066.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: Makefile Makefile.am X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: e409c177e2f92714012b7c0199f631173f4e6066 X-VCS-Branch: master Date: Thu, 17 Dec 2015 03:24:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a1d0dfc5-d602-4bb7-9ec0-db662c648a1b X-Archives-Hash: df76f0dbc6e8f75cdb545a47add80230 commit: e409c177e2f92714012b7c0199f631173f4e6066 Author: Mike Frysinger gentoo org> AuthorDate: Thu Dec 17 01:14:22 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Dec 17 01:14:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=e409c177 build: update autotools build to pass distcheck Makefile | 2 +- Makefile.am | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6375315..b9be199 100644 --- a/Makefile +++ b/Makefile @@ -160,7 +160,7 @@ check test: # GEN_MARK_START = \# @@@ GEN START @@@ \# GEN_MARK_END = \# @@@ GEN END @@@ \# -EXTRA_DIST = $(shell git ls-files) +EXTRA_DIST = $(shell git ls-files | grep -v ^travis/) autotools-update: $(MAKE) -C man -j sed -i.tmp '/^$(GEN_MARK_START)$$/,/^$(GEN_MARK_END)$$/d' Makefile.am diff --git a/Makefile.am b/Makefile.am index e42dce4..82bc3a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,6 +18,7 @@ LDADD = libpaxutils.la $(top_builddir)/autotools/gnulib/libgnu.a bin_SCRIPTS = lddtree symtree bin_PROGRAMS = scanelf dumpelf pspax scanmacho +CLEANFILES = $(bin_SCRIPTS) if USE_PYTHON lddtree: lddtree.py @@ -46,11 +47,12 @@ EXTRA_DIST = autotools/m4/gnulib-cache.m4 dist_man_MANS += \ man/dumpelf.1 \ man/pspax.1 \ - man/scanmacho.1 \ - man/scanelf.1 + man/scanelf.1 \ + man/scanmacho.1 EXTRA_DIST += \ .depend \ .gitignore \ + .travis.yml \ BUGS \ COPYING \ Makefile \