diff options
author | Thiago A. CorrĂȘa <thiago.correa@gmail.com> | 2008-10-31 04:03:27 +0000 |
---|---|---|
committer | Thiago A. CorrĂȘa <thiago.correa@gmail.com> | 2008-10-31 04:03:27 +0000 |
commit | c1b4bfbd724e2b3f74ae7935f1d86a54d3dd8a91 (patch) | |
tree | 467777202d6aedd8bcf3cc0680a46b42a04eeddc /package | |
parent | e246dc1ef5fda66c2c31b081dc1e404f9efca63d (diff) | |
download | buildroot-novena-c1b4bfbd724e2b3f74ae7935f1d86a54d3dd8a91.tar.gz buildroot-novena-c1b4bfbd724e2b3f74ae7935f1d86a54d3dd8a91.zip |
Fix bug #0005884 - pciutils depends on zlib
Diffstat (limited to 'package')
-rw-r--r-- | package/pciutils/Config.in | 1 | ||||
-rw-r--r-- | package/pciutils/pciutils.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/pciutils/Config.in b/package/pciutils/Config.in index a082f2399..18bd65587 100644 --- a/package/pciutils/Config.in +++ b/package/pciutils/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_PCIUTILS bool "pciutils" + depends on BR2_PACKAGE_ZLIB help Various utilities dealing with the PCI bus. Provides things like setpci and lspci. diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index 805a4d320..14c548933 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -43,7 +43,7 @@ $(TARGET_DIR)/sbin/setpci: $(PCIUTILS_DIR)/.compiled $(TARGET_DIR)/usr/share/misc/pci.ids: $(PCIUTILS_DIR)/.unpacked install -Dc $(PCIUTILS_DIR)/pci.ids $(TARGET_DIR)/usr/share/misc/pci.ids -pciutils: uclibc $(TARGET_DIR)/sbin/setpci $(TARGET_DIR)/sbin/lspci $(TARGET_DIR)/usr/share/misc/pci.ids +pciutils: uclibc zlib $(TARGET_DIR)/sbin/setpci $(TARGET_DIR)/sbin/lspci $(TARGET_DIR)/usr/share/misc/pci.ids pciutils-clean: rm $(TARGET_DIR)/sbin/lspci $(TARGET_DIR)/sbin/setpci $(TARGET_DIR)/usr/share/misc/pci.ids |