[libvirt] [PATCH] build: Fix check-driverimpls in VPATH

Jiri Denemark jdenemar at redhat.com
Thu May 16 06:20:35 UTC 2013


DRIVER_SOURCE_FILES mixes files with absolute path (inherited from
REMOTE_DRIVER_GENERATED) with file paths that are relative to srcdir but
check-driverimpls.pl needs full paths.
---
 src/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 6c626ac..9a17f59 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -468,7 +468,8 @@ DRIVER_SOURCE_FILES = \
 
 check-driverimpls:
 	$(AM_V_GEN)$(PERL) $(srcdir)/check-driverimpls.pl \
-		$(DRIVER_SOURCE_FILES)
+		$(filter /%,$(DRIVER_SOURCE_FILES)) \
+		$(addprefix $(srcdir)/,$(filter-out /%,$(DRIVER_SOURCE_FILES)))
 
 EXTRA_DIST += check-driverimpls.pl
 
-- 
1.8.2.1




More information about the libvir-list mailing list