From 880da47a05b9fb8381e79b03ead5dd2d8a6a937a Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Sat, 23 Oct 2010 07:52:18 +1100 Subject: [PATCH] daemon: exclude requirement for probes.h on systems without systemtap This 1-liner was actually written by Eric Blake, over IRC. It addresses a compilation failure in make dist and make rpm for systems without the dtrace/systemtap development libraries installed. --- daemon/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 0e254d4b09..d1ffd97656 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -168,7 +168,7 @@ EXTRA_DIST += probes.d libvirtd.stp if WITH_DTRACE libvirtd_LDADD += probes.o -libvirtd_SOURCES += probes.h +libvirtd_nodist_SOURCES = probes.h BUILT_SOURCES += probes.h -- GitLab