aboutsummaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-webadmin/cockpit/files/0002-fix-makefile-use-copy-rule-for-unmodified-files.patch
blob: 48702c3d1e9883a3a59875e68502cb0568c62096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 \