]> xenbits.xensource.com Git - libvirt.git/commitdiff
build: avoid non-srcdir "make distcheck" failure (test_conf.sh)
authorJim Meyering <meyering@redhat.com>
Wed, 24 Feb 2010 14:01:11 +0000 (15:01 +0100)
committerJim Meyering <meyering@redhat.com>
Thu, 25 Feb 2010 09:50:09 +0000 (10:50 +0100)
* tests/confdata/Makefile.am (EXTRA_DIST): Apply $(wildcard... to
$(srcdir)/..., and then remove the prefix.

tests/confdata/Makefile.am

index 5e97605d24527a78030f1c87b41f8aa18c40e253..eaaadbc8bb4fe575e5f2b417a91d22ef0e279d65 100644 (file)
@@ -1,2 +1,2 @@
-
-EXTRA_DIST = $(wildcard *.conf) $(wildcard *.out)
+EXTRA_DIST = \
+   $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/*.out $(srcdir)/*.conf))