1From c591da4a361496eec93625cf8c4f89bddfedaca7 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 [embedded 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 263098f7fd..fc296832d8 100644 23--- a/configure.ac 24+++ b/configure.ac 25@@ -878,14 +878,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(DIRNAME,dirname) 38 AC_PATH_PROG(GREP,grep) 39 40-- 412.25.1 42 43