Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Thu, 17 Dec 2015 03:24:52
Message-Id: 1450314862.e409c177e2f92714012b7c0199f631173f4e6066.vapier@gentoo
1 commit: e409c177e2f92714012b7c0199f631173f4e6066
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 17 01:14:22 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 17 01:14:22 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=e409c177
7
8 build: update autotools build to pass distcheck
9
10 Makefile | 2 +-
11 Makefile.am | 6 ++++--
12 2 files changed, 5 insertions(+), 3 deletions(-)
13
14 diff --git a/Makefile b/Makefile
15 index 6375315..b9be199 100644
16 --- a/Makefile
17 +++ b/Makefile
18 @@ -160,7 +160,7 @@ check test:
19 #
20 GEN_MARK_START = \# @@@ GEN START @@@ \#
21 GEN_MARK_END = \# @@@ GEN END @@@ \#
22 -EXTRA_DIST = $(shell git ls-files)
23 +EXTRA_DIST = $(shell git ls-files | grep -v ^travis/)
24 autotools-update:
25 $(MAKE) -C man -j
26 sed -i.tmp '/^$(GEN_MARK_START)$$/,/^$(GEN_MARK_END)$$/d' Makefile.am
27
28 diff --git a/Makefile.am b/Makefile.am
29 index e42dce4..82bc3a5 100644
30 --- a/Makefile.am
31 +++ b/Makefile.am
32 @@ -18,6 +18,7 @@ LDADD = libpaxutils.la $(top_builddir)/autotools/gnulib/libgnu.a
33
34 bin_SCRIPTS = lddtree symtree
35 bin_PROGRAMS = scanelf dumpelf pspax scanmacho
36 +CLEANFILES = $(bin_SCRIPTS)
37
38 if USE_PYTHON
39 lddtree: lddtree.py
40 @@ -46,11 +47,12 @@ EXTRA_DIST = autotools/m4/gnulib-cache.m4
41 dist_man_MANS += \
42 man/dumpelf.1 \
43 man/pspax.1 \
44 - man/scanmacho.1 \
45 - man/scanelf.1
46 + man/scanelf.1 \
47 + man/scanmacho.1
48 EXTRA_DIST += \
49 .depend \
50 .gitignore \
51 + .travis.yml \
52 BUGS \
53 COPYING \
54 Makefile \