summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-horizon_git.bb
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2017-01-09 10:04:37 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-01-09 12:23:58 -0500
commitf2c4ac24f1daff78fd4f93af073aa0a7f5b82c31 (patch)
treee9425750744b95d5b95e99f1845bbb854526d986 /meta-openstack/recipes-devtools/python/python-horizon_git.bb
parent8e747fd2ab71d93a7d9b5bfa0bbe54705f56e2ce (diff)
downloadmeta-cloud-services-f2c4ac24f1daff78fd4f93af073aa0a7f5b82c31.tar.gz
python-horizon: cleanup QA warnings
Currently we are seeing warnings like: .../horizon.scss is owned by gid 1001, which is the same as the user running bitbake. These are caused by using 'cp -a' in this case, by excluding the 'ownership' part of -a we can avoid these QA issues. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-horizon_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-horizon_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-horizon_git.bb b/meta-openstack/recipes-devtools/python/python-horizon_git.bb
index 01ce598..61d31da 100644
--- a/meta-openstack/recipes-devtools/python/python-horizon_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-horizon_git.bb
@@ -124,7 +124,7 @@ do_install_append() {
124 124
125 # the following are setup required for horizon-apache 125 # the following are setup required for horizon-apache
126 install -d ${DASHBOARD_SHARE_DIR} 126 install -d ${DASHBOARD_SHARE_DIR}
127 cp -a ${S}/openstack_dashboard ${DASHBOARD_SHARE_DIR} 127 cp -a --no-preserve=ownership ${S}/openstack_dashboard ${DASHBOARD_SHARE_DIR}
128 cp ${S}/manage.py ${DASHBOARD_SHARE_DIR} 128 cp ${S}/manage.py ${DASHBOARD_SHARE_DIR}
129 129
130 install -D -m 644 ${WORKDIR}/local_settings.py \ 130 install -D -m 644 ${WORKDIR}/local_settings.py \