blob: 80c571df98f68988bd4a9be09423443e4bee3587 [file] [log] [blame]
Andrew Geisslerac970dd2021-02-12 15:32:45 -06001From 3b4ba29c7c5800df87eecd65214244619e01162b Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Sun, 7 Feb 2021 16:02:36 +0800
4Subject: [PATCH] workaround error with autoconf 2.7
5
6While using autoconf 2.7, the AM_MISSING_PROG caused unexpected error:
7...
8configure.ac: error: required file 'missing' not found
9...
10
11Since these tools were explicitly added by autotools bbclass,
12remove the testing to workaround the error with autoconf 2.7
13
14Upstream-Status: Inappropriate [oe specific]
15
16Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
17---
18 configure.ac | 8 --------
19 1 file changed, 8 deletions(-)
20
21diff --git a/configure.ac b/configure.ac
22index 609efb104b..2d761cf62c 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -693,14 +693,6 @@ fi
26
27 AC_PATH_PROG(RUSERS, rusers, /usr/bin/rusers)
28
29-dnl #
30-dnl # FIXME This is truly gross.
31-dnl #
32-missing_dir=`cd $ac_aux_dir && pwd`
33-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
34-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
35-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
36-
37 AC_PATH_PROG(LOCATE,locate)
38 AC_PATH_PROG(DIRNAME,dirname)
39 AC_PATH_PROG(GREP,grep)
40--
412.27.0
42