summaryrefslogtreecommitdiffstats
path: root/include/package-ipkg.mk
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-01-16 22:18:35 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-01-16 22:18:35 +0000
commit1630b3829de9aa869992aa747c28d65a2fca31c2 (patch)
tree9300a9ea5f2778db5a2d4a681afbc5344a49563d /include/package-ipkg.mk
parent14c41ae66aef0eec331f1f2483ccbcee1b0f42b3 (diff)
[include] set Installed-Size to 0 when preparing control, its substituted by ipkg-build later on
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25022 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/package-ipkg.mk')
-rw-r--r--include/package-ipkg.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk
index ce979a127..f537fb2db 100644
--- a/include/package-ipkg.mk
+++ b/include/package-ipkg.mk
@@ -90,7 +90,6 @@ ifeq ($(DUMP),)
$(call Package/$(1)/install,$$(IDIR_$(1)))
-find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf
$(RSTRIP) $$(IDIR_$(1))
- SIZE=`cd $$(IDIR_$(1)); du -bs --exclude=./CONTROL . 2>/dev/null | cut -f1`; \
( \
echo "Package: $(1)"; \
echo "Version: $(VERSION)"; \
@@ -107,7 +106,7 @@ ifeq ($(DUMP),)
echo "Priority: $(PRIORITY)"; \
echo "Maintainer: $(MAINTAINER)"; \
echo "Architecture: $(PKGARCH)"; \
- echo "Installed-Size: $$$$SIZE"; \
+ echo "Installed-Size: 0"; \
echo -n "Description: "; $(SH_FUNC) getvar $(call shvar,Package/$(1)/description) | sed -e 's,^[[:space:]]*, ,g'; \
) > $$(IDIR_$(1))/CONTROL/control
chmod 644 $$(IDIR_$(1))/CONTROL/control