blob: 442f1327183c91036b5c3a53a920a2f4397ec7f6 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 63d72f97bd106dd2101cd7fdac6df4f7a053d67c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 2 Sep 2022 08:27:39 -0700
4Subject: [PATCH] configure: Remove the logic to download IANA PEN database
5 during configure
6
7OE will do all downloading before it starts to configure therefore this
8step is moved out into bitbake recipe, so we can make it immutable build
9
10Upstream-Status: Inappropriate [OE-Specific]
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 configure.ac | 16 +---------------
15 1 file changed, 1 insertion(+), 15 deletions(-)
16
17--- a/configure.ac
18+++ b/configure.ac
19@@ -56,21 +56,7 @@ if test "x$exec_prefix" = "xNONE"; then
20 exec_prefix="$prefix"
21 fi
22
23-if test "x$WGET" = "x"; then
24- if test "x$CURL" = "x"; then
25- AC_MSG_WARN([** Neither wget nor curl could be found.])
26- AC_MSG_WARN([** IANA PEN database will not be installed by `make install` !])
27- else
28- DOWNLOAD="$CURL --location --progress-bar"
29- AM_CONDITIONAL([DOWNLOAD], [true])
30- fi
31-else
32- DOWNLOAD="$WGET -c -nd -O -"
33- AM_CONDITIONAL([DOWNLOAD], [true])
34-fi
35-
36-AC_MSG_WARN([** Download is:])
37-AC_MSG_WARN($DOWNLOAD)
38+AM_CONDITIONAL([DOWNLOAD], [false])
39 AC_SUBST(DOWNLOAD, $DOWNLOAD)
40
41 dnl