From: nico Date: Thu, 2 Apr 2015 14:53:00 +0000 (+0000) Subject: ugps: add conffiles section, fix config file perms X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=286264b055043ca1189f8822772dce3086cc530c;p=openwrt.git ugps: add conffiles section, fix config file perms Signed-off-by: Nicolas Thill git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45240 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/utils/ugps/Makefile b/package/utils/ugps/Makefile index 3662125c3a..b724f6189d 100644 --- a/package/utils/ugps/Makefile +++ b/package/utils/ugps/Makefile @@ -36,11 +36,15 @@ ifneq ($(CONFIG_USE_GLIBC),) TARGET_CFLAGS += -D_DEFAULT_SOURCE endif +define Package/ugps/conffiles +/etc/config/gps +endef + define Package/ugps/install $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config $(INSTALL_BIN) $(PKG_BUILD_DIR)/ugps $(1)/usr/sbin/ $(INSTALL_BIN) ./files/ugps.init $(1)/etc/init.d/ugps - $(INSTALL_BIN) ./files/gps.config $(1)/etc/config/gps + $(INSTALL_CONF) ./files/gps.config $(1)/etc/config/gps endef $(eval $(call BuildPackage,ugps))