mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
384e41c2c0
commit
8d59d0679b
@@ -7,15 +7,14 @@ PACKAGECONFIG ??= "acl attr"
|
||||
PACKAGECONFIG[acl] = "--enable-acl-support,--disable-acl-support,acl,"
|
||||
PACKAGECONFIG[attr] = "--enable-xattr-support,--disable-xattr-support,attr,"
|
||||
|
||||
# By default, if crosscompiling, rsync disables a number of
|
||||
# capabilities, hardlinking symlinks and special files (i.e. devices)
|
||||
CACHED_CONFIGUREVARS += "rsync_cv_can_hardlink_special=yes rsync_cv_can_hardlink_symlink=yes"
|
||||
|
||||
# rsync 3.0 uses configure.sh instead of configure, and
|
||||
# makefile checks the existence of configure.sh
|
||||
do_configure_prepend () {
|
||||
rm -f ${S}/configure ${S}/configure.sh
|
||||
|
||||
# By default, if crosscompiling, rsync disables a number of
|
||||
# capabilities, hardlinking symlinks and special files (i.e. devices)
|
||||
export rsync_cv_can_hardlink_special=yes
|
||||
export rsync_cv_can_hardlink_symlink=yes
|
||||
}
|
||||
|
||||
do_configure_append () {
|
||||
|
||||
Reference in New Issue
Block a user