aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-02-24 15:18:51 +0100
committerJim Meyering <meyering@redhat.com>2010-02-25 10:50:18 +0100
commit083b901eb3585e63273fe28214ca5c190fb38f0c (patch)
tree6f50270db890741200705dd0f42355f682972e0a /tests/xml2sexprdata
parentbuild: avoid non-srcdir "make distcheck" failure (test_conf.sh) (diff)
downloadlibvirt-083b901eb3585e63273fe28214ca5c190fb38f0c.tar.gz
libvirt-083b901eb3585e63273fe28214ca5c190fb38f0c.tar.bz2
libvirt-083b901eb3585e63273fe28214ca5c190fb38f0c.zip
build: avoid non-srcdir "make distcheck" failures (srcdir vs wildcard)
* tests/xencapsdata/Makefile.am: Use $(wildcard in $(srcdir)-aware manner * tests/xmconfigdata/Makefile.am: Likewise. * tests/xml2sexprdata/Makefile.am: Likewise. * tests/sexpr2xmldata/Makefile.am (EXTRA_DIST): Likewise. * Makefile.am (XML_EXAMPLES): Use $(wildcard in $(srcdir)-aware manner.
Diffstat (limited to 'tests/xml2sexprdata')
-rw-r--r--tests/xml2sexprdata/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/xml2sexprdata/Makefile.am b/tests/xml2sexprdata/Makefile.am
index 43117d5cb..20028bbb2 100644
--- a/tests/xml2sexprdata/Makefile.am
+++ b/tests/xml2sexprdata/Makefile.am
@@ -1,2 +1,2 @@
-
-EXTRA_DIST = $(wildcard *.xml) $(wildcard *.sexpr)
+EXTRA_DIST = \
+ $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/*.xml $(srcdir)/*.sexpr))