diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-08-23 16:22:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-23 18:32:24 -0700 |
commit | 13e14763f14b5b84051ecb158404dcef937cc4e0 (patch) | |
tree | 32289406319a9e821b41070c9283137a752275fe /meta/classes/kernel.bbclass | |
parent | e7aae45414e4597e9244f86a81fbc940f73785c8 (diff) | |
download | openembedded-core-13e14763f14b5b84051ecb158404dcef937cc4e0.tar.gz openembedded-core-13e14763f14b5b84051ecb158404dcef937cc4e0.tar.bz2 openembedded-core-13e14763f14b5b84051ecb158404dcef937cc4e0.zip |
image.bbclass, kernel.bbclass: remove non-standard -n option from cp command
-n is not a POSIX option and does not work on some systems (e.g. Debian
Lenny); in any case it is not strictly necessary here, so remove it.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 894ffb3970..52aea97372 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -507,7 +507,7 @@ kernel_do_deploy() { rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.bin ln -sf ${KERNEL_IMAGE_BASE_NAME}.bin ${KERNEL_IMAGE_SYMLINK_NAME}.bin - cp -n ${COREBASE}/meta/files/deploydir_readme.txt ${DEPLOYDIR}/README_-_DO_NOT_DELETE_FILES_IN_THIS_DIRECTORY.txt + cp ${COREBASE}/meta/files/deploydir_readme.txt ${DEPLOYDIR}/README_-_DO_NOT_DELETE_FILES_IN_THIS_DIRECTORY.txt } do_deploy[dirs] = "${DEPLOYDIR} ${B}" |