packages: add missing conffiles define

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29199 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2011-11-16 20:02:41 +00:00
parent 6bb943088b
commit d063a0f5e2
70 changed files with 444 additions and 123 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2009 OpenWrt.org
# Copyright (C) 2009-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:=bash-completion
PKG_VERSION:=20080705
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/b/bash-completion/
@ -42,8 +42,12 @@ define Build/Compile
endef
define Package/bash-completion/install
$(INSTALL_DIR) $(1)/etc/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bash_completion $(1)/etc
$(INSTALL_DIR) $(1)/etc
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bash_completion $(1)/etc/
endef
define Package/bash-completion/conffiles
/etc/bash_completion
endef
$(eval $(call BuildPackage,bash-completion))