From: Erik Skultety Date: Wed, 19 Sep 2018 13:37:26 +0000 (+0200) Subject: secret: Makefile: Fix an EXTRA_DIST typo X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=322d2e58d02aa4d48f4bff6995a34640a8a7cea7;p=libvirt.git secret: Makefile: Fix an EXTRA_DIST typo So, when trying to add some secret util sources, we referenced them with a non-existent symbol. Signed-off-by: Erik Skultety --- diff --git a/src/secret/Makefile.inc.am b/src/secret/Makefile.inc.am index 305c4a1ead..79c2b2d74a 100644 --- a/src/secret/Makefile.inc.am +++ b/src/secret/Makefile.inc.am @@ -13,7 +13,7 @@ DRIVER_SOURCE_FILES += $(SECRET_DRIVER_SOURCES) STATEFUL_DRIVER_SOURCE_FILES += $(SECRET_DRIVER_SOURCES) EXTRA_DIST += \ $(SECRET_DRIVER_SOURCES) \ - $(SECRET_UTIL_SOURCESQ) \ + $(SECRET_UTIL_SOURCES) \ $(NULL) noinst_LTLIBRARIES += libvirt_secret.la