blob: a754ff16cf7a30e73ce09c31aa5eb9f57205213e [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 646a78262b18e19721cd41ee515215221dd241b6 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Thu, 12 Jul 2018 18:12:42 +0800
4Subject: [PATCH 3/5] workaround autoconf 2.13 detection failed
5
6Upstream-Status: Inappropriate [oe specific]
7
8Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
9---
10 build/moz.configure/old.configure | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/build/moz.configure/old.configure b/build/moz.configure/old.configure
14index b32c3f7..ece47f4 100644
15--- a/build/moz.configure/old.configure
16+++ b/build/moz.configure/old.configure
17@@ -31,7 +31,7 @@ def autoconf(mozconfig, autoconf):
18 autoconf = autoconf[0] if autoconf else None
19
20 for ac in (mozconfig_autoconf, autoconf, 'autoconf-2.13', 'autoconf2.13',
21- 'autoconf213'):
22+ 'autoconf213', 'autoconf'):
23 if ac:
24 autoconf = find_program(ac)
25 if autoconf:
26--
272.7.4
28