mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
19 lines
386 B
BlitzBasic
19 lines
386 B
BlitzBasic
require rsync.inc
|
|
|
|
PR = "r1"
|
|
|
|
SRC_URI += "file://acinclude.m4"
|
|
|
|
EXTRA_OECONF += "--disable-xattr-support --disable-acl-support"
|
|
|
|
# rsync 3.0 uses configure.sh instead of configure, and
|
|
# makefile checks the existence of configure.sh
|
|
do_configure_prepend () {
|
|
rm -f configure configure.sh
|
|
cp -f ${WORKDIR}/acinclude.m4 ${S}/
|
|
}
|
|
|
|
do_configure_append () {
|
|
cp -f configure configure.sh
|
|
}
|