From: Vasilis Tsiligiannis Date: Wed, 13 Apr 2011 17:40:10 +0000 (+0000) Subject: [packages] pciutils: Do not automatically update PCI IDs on real system X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=17e2e076cbf2b2a2fa9954091f1cf8d9479121d7;p=openwrt%2Fsvn-archive%2Farchive.git [packages] pciutils: Do not automatically update PCI IDs on real system SVN-Revision: 26649 --- diff --git a/utils/pciutils/Makefile b/utils/pciutils/Makefile index fdf772f947..7b47f126ef 100644 --- a/utils/pciutils/Makefile +++ b/utils/pciutils/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2010 OpenWrt.org +# Copyright (C) 2007-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pciutils PKG_VERSION:=3.1.7 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils @@ -34,6 +34,7 @@ endef define Package/pciutils/postinst #!/bin/sh +[ -z "$${IPKG_INSTROOT}" ] || \ (cd $${PKG_ROOT}/usr/share; $${PKG_ROOT}/usr/sbin/update-pciids; rm pci.ids.gz.old) exit 0 endef