diff options
author | Amy Fong <amy.fong@windriver.com> | 2012-11-29 14:24:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-03 14:47:55 +0000 |
commit | cc242175cd9a03d5a99cfc707f2ab0b170a32fe1 (patch) | |
tree | 7d25a8a3db73b5f9a71370ccfc53dcb668f9106d /meta/recipes-devtools | |
parent | 8880840f36fcb53342c6700a4144511ff439a3e3 (diff) | |
download | poky-cc242175cd9a03d5a99cfc707f2ab0b170a32fe1.tar.gz |
rsync doesn't create hardlinks for certain files
commit 4205a4c5d959643cf6c186e0939e202fb6006b82
Author: Amy Fong <Amy.Fong@windriver.com>
Date: Thu Nov 29 09:21:49 2012 -0500
rsync cannot create hardlink for node file when use option
--link-dest=DIR.
By default, rsync's configure file disables certain capabilities when
crosscompiling.
Signed-off-by: Amy Fong <Amy.Fong@windriver.com>
(From OE-Core rev: 1e05183289dbf77ebb1e7aa3375525a7d97eaf0f)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync_3.0.9.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rsync/rsync_3.0.9.bb b/meta/recipes-devtools/rsync/rsync_3.0.9.bb index 8fb0140fe0..74eacc9d6e 100644 --- a/meta/recipes-devtools/rsync/rsync_3.0.9.bb +++ b/meta/recipes-devtools/rsync/rsync_3.0.9.bb | |||
@@ -14,6 +14,12 @@ EXTRA_OECONF += "--disable-xattr-support --disable-acl-support" | |||
14 | do_configure_prepend () { | 14 | do_configure_prepend () { |
15 | rm -f configure configure.sh | 15 | rm -f configure configure.sh |
16 | cp -f ${WORKDIR}/acinclude.m4 ${S}/ | 16 | cp -f ${WORKDIR}/acinclude.m4 ${S}/ |
17 | |||
18 | # by default, if crosscompiling, rsync | ||
19 | # disables a number of capabilities, hardlinking | ||
20 | # symlinks and special files (ie devices) | ||
21 | export rsync_cv_can_hardlink_special=yes | ||
22 | export rsync_cv_can_hardlink_symlink=yes | ||
17 | } | 23 | } |
18 | 24 | ||
19 | do_configure_append () { | 25 | do_configure_append () { |