diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-03-28 09:12:27 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-03-28 09:12:27 +0200 |
commit | 35a3f8d5d8c110cdcb36951b135c9fc0c80b5436 (patch) | |
tree | 1f6e0eeacfcc10f0a0e4338ad5b6030bc777d724 /utils | |
parent | 21362917e97afdd08ce75cad5acaf256b2fefa89 (diff) | |
parent | 7ea7af512549d508c1886397c80fca398604e5f9 (diff) |
Merge pull request #2549 from stintel/pciutils
pciutils: remove eudev dependency
Diffstat (limited to 'utils')
-rw-r--r-- | utils/pciutils/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/pciutils/Makefile b/utils/pciutils/Makefile index 28c47668e..209a3ed09 100644 --- a/utils/pciutils/Makefile +++ b/utils/pciutils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pciutils PKG_VERSION:=3.4.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils @@ -29,7 +29,7 @@ define Package/pciutils CATEGORY:=Utilities TITLE:=Linux PCI Utilities URL:=http://mj.ucw.cz/pciutils.shtml - DEPENDS:=+eudev +libkmod +zlib + DEPENDS:=+libkmod +zlib endef define Package/pciutils/description @@ -48,6 +48,7 @@ MAKE_FLAGS += \ CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ PREFIX="/usr" \ HOST="$(GNU_TARGET_NAME)" \ + HWDB="no" \ ZLIB="yes" ifneq ($(CONFIG_USE_GLIBC),) |