From: Pavel Hrdina Date: Thu, 17 Oct 2019 12:30:05 +0000 (+0200) Subject: src: move nodist_libvirt_driver_remote_la_SOURCES into remote Makefile X-Git-Tag: v5.9.0-rc1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82a643a671780bae45525a7a5574a303c42ef460;p=thirdparty%2Flibvirt.git src: move nodist_libvirt_driver_remote_la_SOURCES into remote Makefile Commit <124f06534c65618b1eeeee07bb26182ab8e30119> moved remote related build rules into separate makefile but forgot to move this part as well. Signed-off-by: Pavel Hrdina Reviewed-by: Ján Tomko --- diff --git a/src/Makefile.am b/src/Makefile.am index 56b1ed48cb..34dfeeb9f9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -529,9 +529,6 @@ if WITH_DTRACE_PROBES libvirt_la_BUILT_LIBADD += libvirt_probes.lo libvirt_la_DEPENDENCIES += libvirt_probes.lo libvirt_probes.o nodist_libvirt_la_SOURCES = libvirt_probes.h -if WITH_REMOTE -nodist_libvirt_driver_remote_la_SOURCES = libvirt_probes.h -endif WITH_REMOTE DTRACE2SYSTEMTAP_FLAGS = --with-modules BUILT_SOURCES += libvirt_probes.h libvirt_probes.stp libvirt_functions.stp diff --git a/src/remote/Makefile.inc.am b/src/remote/Makefile.inc.am index 071d19d26a..00f2212909 100644 --- a/src/remote/Makefile.inc.am +++ b/src/remote/Makefile.inc.am @@ -179,6 +179,10 @@ libvirt_driver_remote_la_CFLAGS = \ libvirt_driver_remote_la_LDFLAGS = $(AM_LDFLAGS) libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES) +if WITH_DTRACE_PROBES +nodist_libvirt_driver_remote_la_SOURCES = libvirt_probes.h +endif WITH_DTRACE_PROBES + if WITH_SASL libvirt_driver_remote_la_CFLAGS += \ $(SASL_CFLAGS) \