mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
from 2.6.9
2.6.9 is also preserved as the last known GPL2 version
changes:
- 3.0.7 has some new change to the autotools scripts, it uses
and configure.sh and checks its existence in Makefile, adapt
this by adding do_configure_{prepend,append}
- aclocal.m4 now also contains custom m4 macros, add acinclude.m4
in the files/
- add popt as build dependency. Besides, rsync can also link to
libacl and libattr. Possibly need to add them in the future, for
now, document the dependency
Signed-off-by: Qing He <qing.he@intel.com>
17 lines
321 B
BlitzBasic
17 lines
321 B
BlitzBasic
require rsync.inc
|
|
|
|
PR = "r0"
|
|
|
|
SRC_URI += "file://acinclude.m4"
|
|
|
|
# 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
|
|
}
|