diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-09 11:39:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-09 23:40:11 +0100 |
commit | f1f3c60c4cf8d0bc4a75d1dbff33e4a09327753c (patch) | |
tree | 191a609fbcba2367e8d591e1853c21c63e5ace43 /meta/recipes-bsp/pciutils | |
parent | 784d17608a7449f38c107ebcb22b526ff6eb8142 (diff) | |
download | poky-f1f3c60c4cf8d0bc4a75d1dbff33e4a09327753c.tar.gz |
pciutils: Add make-native dependency
A change in behaviour in make between 4.2.1 and 4.3 on how whitespace
and appends are handled[1] causes changes in lib/libpci.pc and leads
to non-reproducible builds.
Add a dependency on make-native to resovle this as a least invasive
and least worse solution for now.
[1] https://git.savannah.gnu.org/cgit/make.git/commit/?id=b90fabc8d6f34fb37d428dc0fb1b8b1951a9fbed
(From OE-Core rev: c713692fe016eaac036c9b4e8d24c6eb85e177cd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/pciutils')
-rw-r--r-- | meta/recipes-bsp/pciutils/pciutils_3.8.0.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-bsp/pciutils/pciutils_3.8.0.bb b/meta/recipes-bsp/pciutils/pciutils_3.8.0.bb index 8455b286a8..f3a67d97e4 100644 --- a/meta/recipes-bsp/pciutils/pciutils_3.8.0.bb +++ b/meta/recipes-bsp/pciutils/pciutils_3.8.0.bb | |||
@@ -6,7 +6,10 @@ SECTION = "console/utils" | |||
6 | 6 | ||
7 | LICENSE = "GPL-2.0-or-later" | 7 | LICENSE = "GPL-2.0-or-later" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
9 | DEPENDS = "zlib kmod" | 9 | # Can drop make-native when all systems have make 4.3 |
10 | # https://git.savannah.gnu.org/cgit/make.git/commit/?id=b90fabc8d6f34fb37d428dc0fb1b8b1951a9fbed | ||
11 | # causes space issues in lib/libpci.pc | ||
12 | DEPENDS = "zlib kmod make-native" | ||
10 | 13 | ||
11 | SRC_URI = "${KERNELORG_MIRROR}/software/utils/pciutils/pciutils-${PV}.tar.xz \ | 14 | SRC_URI = "${KERNELORG_MIRROR}/software/utils/pciutils/pciutils-${PV}.tar.xz \ |
12 | file://configure.patch" | 15 | file://configure.patch" |