diff options
author | Douglas Royds <douglas.royds@taitradio.com> | 2018-11-29 10:13:17 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-03 12:20:01 +0000 |
commit | fc5d914379dfa2f10ed80b30c60fa2fb6f7982a9 (patch) | |
tree | 20e8e49029dc6598f70b8ddd59cb134f8d2e4476 | |
parent | 916f9d2eb2b4d9e176df9f4d2281a0bde6e50f67 (diff) | |
download | poky-fc5d914379dfa2f10ed80b30c60fa2fb6f7982a9.tar.gz |
acl: Use install instead of cp
(From OE-Core rev: df65ec47a8743aab2e06f920539a6d79b2d65b54)
Signed-off-by: Douglas Royds <douglas.royds@taitradio.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/attr/acl_2.2.52.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/attr/acl_2.2.52.bb b/meta/recipes-support/attr/acl_2.2.52.bb index 8b89de9b42..318308a009 100644 --- a/meta/recipes-support/attr/acl_2.2.52.bb +++ b/meta/recipes-support/attr/acl_2.2.52.bb | |||
@@ -41,8 +41,8 @@ inherit ptest | |||
41 | 41 | ||
42 | do_install_ptest() { | 42 | do_install_ptest() { |
43 | tar -c --exclude=nfs test/ | ( cd ${D}${PTEST_PATH} && tar -xf - ) | 43 | tar -c --exclude=nfs test/ | ( cd ${D}${PTEST_PATH} && tar -xf - ) |
44 | mkdir ${D}${PTEST_PATH}/include | 44 | install -d ${D}${PTEST_PATH}/include |
45 | cp ${S}/include/builddefs ${S}/include/buildmacros ${S}/include/buildrules ${D}${PTEST_PATH}/include/ | 45 | install -m 644 ${S}/include/builddefs ${S}/include/buildmacros ${S}/include/buildrules ${D}${PTEST_PATH}/include/ |
46 | # Remove any build host references | 46 | # Remove any build host references |
47 | sed -e "s:--sysroot=${STAGING_DIR_TARGET}::g" \ | 47 | sed -e "s:--sysroot=${STAGING_DIR_TARGET}::g" \ |
48 | -e 's:${HOSTTOOLS_DIR}/::g' \ | 48 | -e 's:${HOSTTOOLS_DIR}/::g' \ |