diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:37:00 +0100 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-04 09:06:22 +0100 |
| commit | df7242fddb9048738c0cdfaf0c3c227bf78f3da7 (patch) | |
| tree | 93d90103179618fe595aa26a7bfab1a0afd55418 /meta-oe/recipes-extended | |
| parent | 7396fc62068a41d2ad88cc03d0ca485279510d55 (diff) | |
| download | meta-openembedded-df7242fddb9048738c0cdfaf0c3c227bf78f3da7.tar.gz | |
recipes: Replace "cp -a" with "cp -R --no-dereference --preserve=mode,links"
* Using "cp -a" leaks UID of user running the builds, causing
many QA warnings.
* See this thread for details:
http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112904.html
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
| -rw-r--r-- | meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb b/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb index 85035d9c89..0ac8fad294 100644 --- a/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb +++ b/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb | |||
| @@ -33,7 +33,7 @@ do_install_append() { | |||
| 33 | install ${B}/ptts/tipcTC ${D}/opt/tipcutils/ptts/ | 33 | install ${B}/ptts/tipcTC ${D}/opt/tipcutils/ptts/ |
| 34 | 34 | ||
| 35 | install -d ${D}${sysconfdir} | 35 | install -d ${D}${sysconfdir} |
| 36 | cp -a ${S}/scripts/etc/* ${D}${sysconfdir}/ | 36 | cp -R --no-dereference --preserve=mode,links -v ${S}/scripts/etc/* ${D}${sysconfdir}/ |
| 37 | chown -R root:root ${D}${sysconfdir} | 37 | chown -R root:root ${D}${sysconfdir} |
| 38 | } | 38 | } |
| 39 | 39 | ||
