summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2017-11-09 11:37:13 +0100
committerFrediano Ziglio <fziglio@redhat.com>2017-11-09 11:48:51 +0000
commit87dbac6202962fe761162aeac9a0ec38f2684118 (patch)
treed20165187b80ac7394556386c48cd3eb7695c59f
parent4f5cc6581b3b83c9b802ad141c736aab5749a33e (diff)
build: Don't use * wildcard in Makefile.am
automake does not support this, see https://www.gnu.org/software/automake/manual/html_node/Wildcards.html and this was causing weird failures when running make distcheck (automake looking for *.in files in $builddir rather than $srcdir, and then an unwanted hexdump\*.out file created in $builddir, but not cleaned). Acked-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r--src/unittests/Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/unittests/Makefile.am b/src/unittests/Makefile.am
index 0dc2328..ef6c253 100644
--- a/src/unittests/Makefile.am
+++ b/src/unittests/Makefile.am
@@ -32,4 +32,11 @@ test_hexdump_LDADD = \
../libstreaming-utils.a \
$(NULL)
-EXTRA_DIST = hexdump.sh hexdump*.in hexdump*.out
+EXTRA_DIST = \
+ hexdump.sh \
+ hexdump1.in \
+ hexdump1.out \
+ hexdump2.in \
+ hexdump2.out \
+ hexdump3.in \
+ hexdump3.out