summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autogen
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-01-07 00:58:07 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-15 11:54:50 +0000
commit3549abca711b05cda8706ff5f5cc52d44fe785bc (patch)
tree0cec3e6e3f305e63ff3db1dc6a0b016b80798c3b /meta/recipes-devtools/autogen
parentfb14627bb503588a1eaef4cf2de317a01ff8be8d (diff)
downloadpoky-3549abca711b05cda8706ff5f5cc52d44fe785bc.tar.gz
autogen-native: 5.18.5 -> 5.18.6
* Update increase-timeout-limit.patch (From OE-Core rev: 9aeff43b20d2912289191802674ec72f71adb32f) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autogen')
-rw-r--r--meta/recipes-devtools/autogen/autogen-native_5.18.6.bb (renamed from meta/recipes-devtools/autogen/autogen-native_5.18.5.bb)4
-rw-r--r--meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch29
2 files changed, 15 insertions, 18 deletions
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.5.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.6.bb
index 373dd89994..d77b8273e2 100644
--- a/meta/recipes-devtools/autogen/autogen-native_5.18.5.bb
+++ b/meta/recipes-devtools/autogen/autogen-native_5.18.6.bb
@@ -14,8 +14,8 @@ SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \
14 file://redirect-output-dir.patch \ 14 file://redirect-output-dir.patch \
15" 15"
16 16
17SRC_URI[md5sum] = "385d7c7dfbe60babbee261c054923a53" 17SRC_URI[md5sum] = "fdee403e524c0af3ded6b3becb365671"
18SRC_URI[sha256sum] = "7bbdb73b5518baf64c6d3739fb2ecc66d2cccda888ce5ad573abe235ab5d96ba" 18SRC_URI[sha256sum] = "2fc7f12a5ecb3b1e8bd4364aa906b837cff01f80edb7d2fb38ed8b9dfbcd3271"
19 19
20UPSTREAM_CHECK_URI = "http://ftp.gnu.org/gnu/autogen/" 20UPSTREAM_CHECK_URI = "http://ftp.gnu.org/gnu/autogen/"
21UPSTREAM_CHECK_REGEX = "rel(?P<pver>\d+(\.\d+)+)/" 21UPSTREAM_CHECK_REGEX = "rel(?P<pver>\d+(\.\d+)+)/"
diff --git a/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch b/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch
index 3d4c1d604e..9efd7e5587 100644
--- a/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch
+++ b/meta/recipes-devtools/autogen/autogen/increase-timeout-limit.patch
@@ -12,22 +12,19 @@ Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
12 1 file changed, 3 insertions(+), 3 deletions(-) 12 1 file changed, 3 insertions(+), 3 deletions(-)
13 13
14diff --git a/configure.ac b/configure.ac 14diff --git a/configure.ac b/configure.ac
15index 0af7c18..5544f59 100644 15index 58a848b..170dd9e 100644
16--- a/configure.ac 16--- a/configure.ac
17+++ b/configure.ac 17+++ b/configure.ac
18@@ -175,9 +175,9 @@ config_end_time=`date +%s 2>/dev/null` 18@@ -178,9 +178,9 @@ time_delta=`expr ${config_end_time} - ${config_start_time} 2>/dev/null`
19 time_delta=`expr ${config_end_time} - ${config_start_time} 2>/dev/null` 19 if test -z "${AG_TIMEOUT}"
20 then
21 if test -z "${time_delta}"
22- then time_delta=10
23- elif test ${time_delta} -lt 5
24- then time_delta=5 ; fi
25+ then time_delta=60
26+ elif test ${time_delta} -lt 30
27+ then time_delta=30 ; fi
20 28
21 if test -z "${time_delta}" 29 AG_TIMEOUT=${time_delta}
22-then time_delta=10 30 fi
23-elif test ${time_delta} -lt 5
24-then time_delta=5 ; fi
25+then time_delta=60
26+elif test ${time_delta} -lt 30
27+then time_delta=30 ; fi
28
29 AG_TIMEOUT=${time_delta}
30 ]
31--
321.7.9.5
33