aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-02-24 15:01:11 +0100
committerJim Meyering <meyering@redhat.com>2010-02-25 10:50:09 +0100
commit327d5fe072f36ad5b89c7b2e1a6c70c15d3358bf (patch)
tree9cf6d28077f2a6c07ebda43e6e2a81177b2812db /tests
parentbuild: avoid non-srcdir installation failure (sitemap.html.in) (diff)
downloadlibvirt-327d5fe072f36ad5b89c7b2e1a6c70c15d3358bf.tar.gz
libvirt-327d5fe072f36ad5b89c7b2e1a6c70c15d3358bf.tar.bz2
libvirt-327d5fe072f36ad5b89c7b2e1a6c70c15d3358bf.zip
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.
Diffstat (limited to 'tests')
-rw-r--r--tests/confdata/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/confdata/Makefile.am b/tests/confdata/Makefile.am
index 5e97605d2..eaaadbc8b 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))