From 933e8da753e42e1155ec7b334566a41b2db1985e Mon Sep 17 00:00:00 2001 From: Amarnath Valluri Date: Thu, 7 Jan 2016 16:19:34 +0200 Subject: [PATCH] Fix build failure on Yocto On install phase certificate files are being installed twice as included in _DATA twice. We can use EXTRA_DIST than dist_. Signed-off-by: Amarnath Valluri --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index bca6e8ce..b7b73ae4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -98,11 +98,11 @@ SWUPD_CERTS = certs/157753a5.0 \ certs/d6325660.0 \ certs/d6325660.1 swupdcerts_DATA = $(SWUPD_CERTS) -dist_swupdcerts_DATA = $(SWUPD_CERTS) EXTRA_DIST += \ data/check-update.service \ - data/check-update.timer + data/check-update.timer \ + $(SWUPD_CERTS) DISTCHECK_CONFIGURE_FLAGS = \ --with-systemdsystemunitdir=$$dc_install_base/$(systemdunitdir)