- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
34 lines
807 B
Diff
34 lines
807 B
Diff
configure.ac: check egrep
|
|
|
|
The macro AC_HEADER_STDC which requires AC_PROG_EGREP has been removed
|
|
from configure.ac, then it fails to substitute '@EGREP@':
|
|
|
|
| [GEN] command-lines-input.h
|
|
| /bin/bash: line 2: @EGREP@: command not found
|
|
| [GEN] command-count.h
|
|
|
|
Call AC_PROG_EGREP to fix the error.
|
|
|
|
Upstream-Status: Submitted [https://gitlab.com/lvmteam/lvm2/-/merge_requests/4]
|
|
|
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
|
---
|
|
configure.ac | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 2e52498f9..d9462e22c 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -78,6 +78,7 @@ AC_PROG_LN_S
|
|
AC_PROG_MAKE_SET
|
|
AC_PROG_MKDIR_P
|
|
AC_PROG_RANLIB
|
|
+AC_PROG_EGREP
|
|
AC_CHECK_TOOL([READELF], [readelf])
|
|
AC_CHECK_TOOL(AR, ar)
|
|
AC_PATH_TOOL(CFLOW_CMD, cflow)
|
|
--
|
|
2.34.1
|
|
|