diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-05 17:27:00 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-05 17:27:00 +0000 |
commit | 7a583f78548a9a5b5a28260085ee53d2085b90e7 (patch) | |
tree | 353f2b960d4504f02121453f9d00804413c41936 | |
parent | 8b0e381068b8e45160fe9289cb0e13a8da2080d5 (diff) |
include/package-ipkg.mk: don't add vi backup files to packages
Also remove trailing whitespaces.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29449 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/package-ipkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 9eec4f26e..50d18e04d 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)"; \ |