1From 1edf0756bf4fd002f5b60cf2b86d4b97a00aff20 Mon Sep 17 00:00:00 2001 2From: Michael Haener <michael.haener@siemens.com> 3Date: Wed, 25 Mar 2020 08:32:07 +0100 4Subject: [PATCH] fix(makefile): use copy rule for unmodified files 5 6--- 7 pkg/Makefile.am | 27 +++++++++++++++++++++++++++ 8 1 file changed, 27 insertions(+) 9 10diff --git a/pkg/Makefile.am b/pkg/Makefile.am 11index 192b785..03b9787 100644 12--- a/pkg/Makefile.am 13+++ b/pkg/Makefile.am 14@@ -13,6 +13,33 @@ playground_DATA = \ 15 dist/playground/extra.de.po: pkg/playground/extra.de.po 16 $(COPY_RULE) 17 18+dist/playground/hammer.gif: pkg/playground/hammer.gif 19+ $(COPY_RULE) 20+ 21+dist/sosreport/sosreport.png: pkg/sosreport/sosreport.png 22+ $(COPY_RULE) 23+ 24+dist/apps/default.png: pkg/apps/default.png 25+ $(COPY_RULE) 26+ 27+dist/storaged/images/storage-array.png: pkg/storaged/images/storage-array.png 28+ $(COPY_RULE) 29+ 30+dist/storaged/images/storage-disk.png: pkg/storaged/images/storage-disk.png 31+ $(COPY_RULE) 32+ 33+dist/shell/images/server-error.png: pkg/shell/images/server-error.png 34+ $(COPY_RULE) 35+ 36+dist/shell/images/server-large.png: pkg/shell/images/server-large.png 37+ $(COPY_RULE) 38+ 39+dist/shell/images/server-small.png: pkg/shell/images/server-small.png 40+ $(COPY_RULE) 41+ 42+dist/shell/index.html: pkg/shell/index.html 43+ $(COPY_RULE) 44+ 45 metainfodir = ${datarootdir}/metainfo 46 metainfo_DATA = pkg/sosreport/org.cockpit-project.cockpit-sosreport.metainfo.xml \ 47 pkg/kdump/org.cockpit-project.cockpit-kdump.metainfo.xml \ 48