diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-10-15 00:07:26 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-15 23:07:27 +0200 |
commit | 7f4f23eb1b45c28378cd63629b13b4b2069b00d8 (patch) | |
tree | 5980f4c52176c10ce4ee0bce1813b4b2dbe1e3bb /package/pciutils/pciutils.mk | |
parent | 2500d3001872c591cc3f92be7c6946e27f22ae08 (diff) |
pciutils: bump to version 3.1.8 and other fixes
Bump to pciutils version 3.1.8
Also make it build after busybox because it's got a lightweight
lspci whereas the full-blown is preferred.
Ditch the pci.ids skeleton comment since it's been shipped for some time
now.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/pciutils/pciutils.mk')
-rw-r--r-- | package/pciutils/pciutils.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index 52f5f67ff..28f80d462 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -4,7 +4,7 @@ # ############################################################# -PCIUTILS_VERSION = 3.1.7 +PCIUTILS_VERSION = 3.1.8 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci ifeq ($(BR2_PACKAGE_ZLIB),y) PCIUTILS_ZLIB=yes @@ -15,6 +15,11 @@ endif PCIUTILS_DNS=no PCIUTILS_SHARED=yes +# Build after busybox since it's got a lightweight lspci +ifeq ($(BR2_PACKAGE_BUSYBOX),y) + PCIUTILS_DEPENDENCIES += busybox +endif + define PCIUTILS_CONFIGURE_CMDS $(SED) 's/wget --no-timestamping/wget/' $(PCIUTILS_DIR)/update-pciids.sh $(SED) 's/uname -s/echo Linux/' \ |