summaryrefslogtreecommitdiff
path: root/strata
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2015-05-05 15:24:44 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-10-13 16:45:02 +0000
commit0eefa55cdf8e8610ba0f17c091975844fbb3b4d2 (patch)
tree957c1f4053afbfb7346b2dd8aeb9cc6b4013f40f /strata
parentcbd4681b9330bc49ef0e636546756ee72afb1c07 (diff)
downloaddefinitions-0eefa55cdf8e8610ba0f17c091975844fbb3b4d2.tar.gz
gdp-hmi: Fix images failing to install to destination
The destination must be the same for all three dirs, even if that means files overwrite each other. Since `cp` refuses to do that as part of the same command, I run it once for each subdir.
Diffstat (limited to 'strata')
-rw-r--r--strata/genivi-demo-platform/genivi-demo-platform-hmi.morph4
1 files changed, 3 insertions, 1 deletions
diff --git a/strata/genivi-demo-platform/genivi-demo-platform-hmi.morph b/strata/genivi-demo-platform/genivi-demo-platform-hmi.morph
index b30e72de..d2cee815 100644
--- a/strata/genivi-demo-platform/genivi-demo-platform-hmi.morph
+++ b/strata/genivi-demo-platform/genivi-demo-platform-hmi.morph
@@ -46,7 +46,9 @@ install-commands:
- cd app/gdp-hmi-panel && make INSTALL_ROOT=$DESTDIR install
- cd app/qml-example && make INSTALL_ROOT=$DESTDIR install
- mkdir -p $DESTDIR/usr/share/gdp
-- cp -a app/*/assets/* $DESTDIR/usr/share/gdp/
+- cp -a app/gdp-hmi-background/assets/* $DESTDIR/usr/share/gdp/
+- cp -a app/gdp-hmi-launcher2/content/images/* $DESTDIR/usr/share/gdp/
+- cp -a app/gdp-hmi-panel/assets/* $DESTDIR/usr/share/gdp/
- mkdir -p "$DESTDIR/usr/lib/systemd/user"
- |
cat >"$DESTDIR/usr/lib/systemd/user/gdp-hmi-launcher2.service" <<EOF