X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fpackage-ipkg.mk;h=e0a8118ae60996578a3d3a52adac006ef1b8576d;hb=784be92e398ef9b1c26caaf617af0f3bfc2ee91b;hp=33b9ef83537f98c0bf221df81932169e4cfbe2bc;hpb=8a0d981006508cbaa3f39a75affd63bdb0f0ff3f;p=oweals%2Fopenwrt.git diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 33b9ef8353..e0a8118ae6 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -1,4 +1,4 @@ -# +# # Copyright (C) 2006,2007 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. @@ -71,7 +71,7 @@ ifeq ($(DUMP),) endif IDEPEND_$(1):=$$(call filter_deps,$$(DEPENDS)) - + $(eval $(call BuildIPKGVariable,$(1),conffiles)) $(eval $(call BuildIPKGVariable,$(1),preinst)) $(eval $(call BuildIPKGVariable,$(1),postinst)) @@ -91,7 +91,7 @@ ifeq ($(DUMP),) @rm -rf $(PACKAGE_DIR)/$(1)_* $$(IDIR_$(1)) mkdir -p $(PACKAGE_DIR) $$(IDIR_$(1))/CONTROL $(call Package/$(1)/install,$$(IDIR_$(1))) - -find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf + -find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' -o -name '*~'| $(XARGS) rm -rf $(RSTRIP) $$(IDIR_$(1)) ( \ echo "Package: $(1)"; \ @@ -123,7 +123,7 @@ ifeq ($(DUMP),) for x in $$(KEEP_$(1)); do \ [ -f "$$(IDIR_$(1))/$$$$x" ] || keepfiles="$$$${keepfiles:+$$$$keepfiles }$$$$x"; \ done; \ - [ -z "$keepfiles" ] || { \ + [ -z "$$$$keepfiles" ] || { \ mkdir -p $$(IDIR_$(1))/lib/upgrade/keep.d; \ for x in $$$$keepfiles; do echo $$$$x >> $$(IDIR_$(1))/lib/upgrade/keep.d/$(1); done; \ }; \