summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorWenzong Fan <wenzong.fan@windriver.com>2016-10-20 07:17:58 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2016-10-26 10:28:39 +0200
commit51867d2826c8296db210fe69e508aeda29d9f17e (patch)
treed1e239ebde865d36648afa2286ce4215d4ec3759 /meta-oe
parenta4f713b5b1176dd408dae30c60ced28d64c12d18 (diff)
downloadmeta-openembedded-51867d2826c8296db210fe69e508aeda29d9f17e.tar.gz
rsnapshot: update to 1.4.2
* update rsnapshot from 1.3.1 to 1.4.2 * fix configure error: configure.ac:302: file 't/include.ac' does not exist Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb12
1 files changed, 10 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb b/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb
index d6805110c..1ebbb401d 100644
--- a/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb
+++ b/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb
@@ -20,8 +20,8 @@ RDEPENDS_${PN} = "rsync \
20 perl-module-overloading \ 20 perl-module-overloading \
21 " 21 "
22 22
23SRCREV = "1047cbb57937c29233388e2fcd847fecd3babe74" 23SRCREV = "27209563f924a22f510698ea225f53ea52f07cb4"
24PV = "1.3.1+git${SRCPV}" 24PV = "1.4.2+git${SRCPV}"
25 25
26SRC_URI = "git://github.com/DrHyde/${BPN};branch=master;protocol=git \ 26SRC_URI = "git://github.com/DrHyde/${BPN};branch=master;protocol=git \
27 file://configure-fix-cmd_rsync.patch \ 27 file://configure-fix-cmd_rsync.patch \
@@ -41,3 +41,11 @@ EXTRA_OECONF += "--without-cp \
41 --without-rsync \ 41 --without-rsync \
42 ac_cv_path_PERL=${bindir}/perl \ 42 ac_cv_path_PERL=${bindir}/perl \
43 " 43 "
44
45# Create 't/include.ac' before starting the autoreconf to fix configure
46# error: configure.ac:302: file 't/include.ac' does not exist
47do_configure_prepend(){
48 saved_dir=`pwd`
49 cd ${S}; ./autogen.sh
50 cd ${saved_dir}
51}