diff options
author | Stefano Cappa <stefano.cappa.ks89@gmail.com> | 2019-01-13 12:39:16 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-01-13 10:33:16 -0800 |
commit | 612128b46d183934bda7d0c7e224a313fc54d227 (patch) | |
tree | 27293dd76237fed3fc0ff4b751aab5754c07eea4 /meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch | |
parent | 3489f91f92935a9fb8320b34ed9c6558473762dc (diff) | |
download | meta-openembedded-612128b46d183934bda7d0c7e224a313fc54d227.tar.gz |
dhcpcd: upgrade to dhcpcd 7.0.8
Signed-off-by: Stefano Cappa <stefano.cappa.ks89@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch')
-rw-r--r-- | meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch b/meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch new file mode 100644 index 0000000000..37d2344438 --- /dev/null +++ b/meta-networking/recipes-connectivity/dhcpcd/files/0001-remove-INCLUDEDIR-to-prevent-build-issues.patch | |||
@@ -0,0 +1,45 @@ | |||
1 | From aa9e3982c1e75ad49945a62f5e262279c7a905a4 Mon Sep 17 00:00:00 2001 | ||
2 | From: Stefano Cappa <stefano.cappa.ks89@gmail.com> | ||
3 | Date: Sun, 13 Jan 2019 01:50:52 +0100 | ||
4 | Subject: [PATCH] remove INCLUDEDIR to prevent build issues | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Stefano Cappa <stefano.cappa.ks89@gmail.com> | ||
9 | --- | ||
10 | configure | 5 ----- | ||
11 | 1 file changed, 5 deletions(-) | ||
12 | |||
13 | diff --git a/configure b/configure | ||
14 | index 6c81e0db..32dea2b4 100755 | ||
15 | --- a/configure | ||
16 | +++ b/configure | ||
17 | @@ -20,7 +20,6 @@ BUILD= | ||
18 | HOST= | ||
19 | HOSTCC= | ||
20 | TARGET= | ||
21 | -INCLUDEDIR= | ||
22 | DEBUG= | ||
23 | FORK= | ||
24 | STATIC= | ||
25 | @@ -72,7 +71,6 @@ for x do | ||
26 | --mandir) MANDIR=$var;; | ||
27 | --datadir) DATADIR=$var;; | ||
28 | --with-ccopts|CFLAGS) CFLAGS=$var;; | ||
29 | - -I|--includedir) INCLUDEDIR="$INCLUDEDIR${INCLUDEDIR:+ }-I$var";; | ||
30 | CC) CC=$var;; | ||
31 | CPPFLAGS) CPPFLAGS=$var;; | ||
32 | PKG_CONFIG) PKG_CONFIG=$var;; | ||
33 | @@ -309,9 +307,6 @@ if [ -n "$CPPFLAGS" ]; then | ||
34 | echo "CPPFLAGS=" >>$CONFIG_MK | ||
35 | echo "CPPFLAGS+= $CPPFLAGS" >>$CONFIG_MK | ||
36 | fi | ||
37 | -if [ -n "$INCLUDEDIR" ]; then | ||
38 | - echo "CPPFLAGS+= $INCLUDEDIR" >>$CONFIG_MK | ||
39 | -fi | ||
40 | if [ -n "$LDFLAGS" ]; then | ||
41 | echo "LDFLAGS=" >>$CONFIG_MK | ||
42 | echo "LDFLAGS+= $LDFLAGS" >>$CONFIG_MK | ||
43 | -- | ||
44 | 2.17.2 (Apple Git-113) | ||
45 | |||