| From 1edf0756bf4fd002f5b60cf2b86d4b97a00aff20 Mon Sep 17 00:00:00 2001 |
| From: Michael Haener <michael.haener@siemens.com> |
| Date: Wed, 25 Mar 2020 08:32:07 +0100 |
| Subject: [PATCH] fix(makefile): use copy rule for unmodified files |
| |
| --- |
| pkg/Makefile.am | 27 +++++++++++++++++++++++++++ |
| 1 file changed, 27 insertions(+) |
| |
| --- a/pkg/Makefile.am |
| +++ b/pkg/Makefile.am |
| @@ -7,6 +7,33 @@ TESTS += $(pkg_TESTS) |
| %.metainfo.xml: %.metainfo.xml.in |
| $(AM_V_GEN) mkdir -p $(dir $@) && msgfmt --xml -d $(top_srcdir)/po --template $< --output $@ |
| |
| +dist/playground/hammer.gif: pkg/playground/hammer.gif |
| + $(COPY_RULE) |
| + |
| +dist/sosreport/sosreport.png: pkg/sosreport/sosreport.png |
| + $(COPY_RULE) |
| + |
| +dist/apps/default.png: pkg/apps/default.png |
| + $(COPY_RULE) |
| + |
| +dist/storaged/images/storage-array.png: pkg/storaged/images/storage-array.png |
| + $(COPY_RULE) |
| + |
| +dist/storaged/images/storage-disk.png: pkg/storaged/images/storage-disk.png |
| + $(COPY_RULE) |
| + |
| +dist/shell/images/server-error.png: pkg/shell/images/server-error.png |
| + $(COPY_RULE) |
| + |
| +dist/shell/images/server-large.png: pkg/shell/images/server-large.png |
| + $(COPY_RULE) |
| + |
| +dist/shell/images/server-small.png: pkg/shell/images/server-small.png |
| + $(COPY_RULE) |
| + |
| +dist/shell/index.html: pkg/shell/index.html |
| + $(COPY_RULE) |
| + |
| metainfodir = ${datarootdir}/metainfo |
| nodist_metainfo_DATA = \ |
| pkg/sosreport/org.cockpit-project.cockpit-sosreport.metainfo.xml \ |