diff options
author | Qing He <qing.he@intel.com> | 2010-07-06 16:56:06 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 16:25:17 +0100 |
commit | 549a171917447103dece54e9e9a3be16fe547905 (patch) | |
tree | b712380760f05db3295e3079b5e02fb1ec00c6fe /meta/packages/rsync/rsync_3.0.7.bb | |
parent | dd05d05044017fb46b70f46503c76212aa606a9e (diff) | |
download | poky-549a171917447103dece54e9e9a3be16fe547905.tar.gz |
rsync: upgrade to version 3.0.7
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>
Diffstat (limited to 'meta/packages/rsync/rsync_3.0.7.bb')
-rw-r--r-- | meta/packages/rsync/rsync_3.0.7.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/packages/rsync/rsync_3.0.7.bb b/meta/packages/rsync/rsync_3.0.7.bb new file mode 100644 index 0000000000..61355d7d4c --- /dev/null +++ b/meta/packages/rsync/rsync_3.0.7.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | require rsync.inc | ||
2 | |||
3 | PR = "r0" | ||
4 | |||
5 | SRC_URI += "file://acinclude.m4" | ||
6 | |||
7 | # rsync 3.0 uses configure.sh instead of configure, and | ||
8 | # makefile checks the existence of configure.sh | ||
9 | do_configure_prepend () { | ||
10 | rm -f configure configure.sh | ||
11 | cp -f ${WORKDIR}/acinclude.m4 ${S}/ | ||
12 | } | ||
13 | |||
14 | do_configure_append () { | ||
15 | cp -f configure configure.sh | ||
16 | } | ||