From: Jim Meyering Date: Wed, 24 Feb 2010 14:01:11 +0000 (+0100) Subject: build: avoid non-srcdir "make distcheck" failure (test_conf.sh) X-Git-Tag: v0.7.7~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=327d5fe072f36ad5b89c7b2e1a6c70c15d3358bf;p=thirdparty%2Flibvirt.git build: avoid non-srcdir "make distcheck" failure (test_conf.sh) * tests/confdata/Makefile.am (EXTRA_DIST): Apply $(wildcard... to $(srcdir)/..., and then remove the prefix. --- diff --git a/tests/confdata/Makefile.am b/tests/confdata/Makefile.am index 5e97605d24..eaaadbc8bb 100644 --- a/tests/confdata/Makefile.am +++ b/tests/confdata/Makefile.am @@ -1,2 +1,2 @@ - -EXTRA_DIST = $(wildcard *.conf) $(wildcard *.out) +EXTRA_DIST = \ + $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/*.out $(srcdir)/*.conf))