mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
053d73ffd6
ChangeLog: https://github.com/FreeRADIUS/freeradius-server/releases/tag/release_3_2_6 https://github.com/FreeRADIUS/freeradius-server/releases/tag/release_3_2_7 * Refresh local patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
From 9fed86858d8d2045f3de77405059d786bb2d50ac Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Sun, 7 Feb 2021 16:02:36 +0800
|
|
Subject: [PATCH] Workaround error with autoconf 2.7
|
|
|
|
While using autoconf 2.7, the AM_MISSING_PROG caused unexpected error:
|
|
...
|
|
configure.ac: error: required file 'missing' not found
|
|
...
|
|
|
|
Since these tools were explicitly added by autotools bbclass,
|
|
remove the testing to workaround the error with autoconf 2.7
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
configure.ac | 8 --------
|
|
1 file changed, 8 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 64aa9e4293..0861514ef7 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -926,14 +926,6 @@ if test "x$WITH_RADLAST" != "xyes"; then
|
|
fi
|
|
|
|
|
|
-dnl #
|
|
-dnl # FIXME This is truly gross.
|
|
-dnl #
|
|
-missing_dir=`cd $ac_aux_dir && pwd`
|
|
-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
|
|
-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
|
|
-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
|
|
-
|
|
AC_PATH_PROG(DIRNAME,dirname)
|
|
AC_PATH_PROG(GREP,grep)
|
|
|
|
--
|
|
2.25.1
|
|
|