[libvirt] [PATCH] build: Fix VPATH build

Jiri Denemark jdenemar at redhat.com
Thu Dec 13 16:09:11 UTC 2012


$(srcdir) is already part of $$file since commit f1f9a7ac7e.
---
Pushed as a build-breaker.

 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index bb80992..7c2d8ed 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1451,7 +1451,7 @@ libvirt.syms: libvirt_public.syms $(USED_SYM_FILES) \
 	printf 'LIBVIRT_PRIVATE_$(VERSION) {\n\n'  >>$@-tmp && \
 	printf 'global:\n\n' >>$@-tmp && \
 	for file in $(USED_SYM_FILES); do \
-	    cat $(srcdir)/$$file >>$@-tmp; \
+	    cat $$file >>$@-tmp; \
 	done && \
 	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp && \
 	chmod a-w $@-tmp && \
-- 
1.8.0.2




More information about the libvir-list mailing list