diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-12 15:51:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-13 10:12:52 +0100 |
commit | 8d59d0679bb532321683ec6a6e223092618bd0d2 (patch) | |
tree | fe5ca3f365f1caebdca0d3c0ec6a52bbe7bc3335 /meta/recipes-devtools/rsync/rsync_3.1.2.bb | |
parent | 384e41c2c03e71cbe418a820c1eeea4d63ddb1e9 (diff) | |
download | poky-8d59d0679bb532321683ec6a6e223092618bd0d2.tar.gz |
rsync: pass cached configure values through the right variable
Passing these through CACHED_CONFIGUREVARS doesn't change the build, but makes
the recipe clearer.
(From OE-Core rev: 0d9bf9768d0fc19733d9b9120cbd2bbd29b76f25)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rsync/rsync_3.1.2.bb')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync_3.1.2.bb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta/recipes-devtools/rsync/rsync_3.1.2.bb b/meta/recipes-devtools/rsync/rsync_3.1.2.bb index 5f4733f7b7..4b91ac7774 100644 --- a/meta/recipes-devtools/rsync/rsync_3.1.2.bb +++ b/meta/recipes-devtools/rsync/rsync_3.1.2.bb | |||
@@ -7,15 +7,14 @@ PACKAGECONFIG ??= "acl attr" | |||
7 | PACKAGECONFIG[acl] = "--enable-acl-support,--disable-acl-support,acl," | 7 | PACKAGECONFIG[acl] = "--enable-acl-support,--disable-acl-support,acl," |
8 | PACKAGECONFIG[attr] = "--enable-xattr-support,--disable-xattr-support,attr," | 8 | PACKAGECONFIG[attr] = "--enable-xattr-support,--disable-xattr-support,attr," |
9 | 9 | ||
10 | # By default, if crosscompiling, rsync disables a number of | ||
11 | # capabilities, hardlinking symlinks and special files (i.e. devices) | ||
12 | CACHED_CONFIGUREVARS += "rsync_cv_can_hardlink_special=yes rsync_cv_can_hardlink_symlink=yes" | ||
13 | |||
10 | # rsync 3.0 uses configure.sh instead of configure, and | 14 | # rsync 3.0 uses configure.sh instead of configure, and |
11 | # makefile checks the existence of configure.sh | 15 | # makefile checks the existence of configure.sh |
12 | do_configure_prepend () { | 16 | do_configure_prepend () { |
13 | rm -f ${S}/configure ${S}/configure.sh | 17 | rm -f ${S}/configure ${S}/configure.sh |
14 | |||
15 | # By default, if crosscompiling, rsync disables a number of | ||
16 | # capabilities, hardlinking symlinks and special files (i.e. devices) | ||
17 | export rsync_cv_can_hardlink_special=yes | ||
18 | export rsync_cv_can_hardlink_symlink=yes | ||
19 | } | 18 | } |
20 | 19 | ||
21 | do_configure_append () { | 20 | do_configure_append () { |