diff options
author | Andy Boyett <agb@openwrt.org> | 2008-07-29 03:36:11 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2008-07-29 03:36:11 +0000 |
commit | 6b045c7dc690a2626248c925cb80cc1717987cc7 (patch) | |
tree | 985a4834cff72616bc084ae5f544418486cf2898 /package/Makefile | |
parent | 28ddc0a2ae7a20aa81534dfa5ad3540fbb96e078 (diff) | |
download | upstream-6b045c7dc690a2626248c925cb80cc1717987cc7.tar.gz upstream-6b045c7dc690a2626248c925cb80cc1717987cc7.tar.bz2 upstream-6b045c7dc690a2626248c925cb80cc1717987cc7.zip |
Generate gzipped package lists - Can be used by changing the src line in /etc/ipkg.conf to src/gz - Cannot be used by busybox ipkg
SVN-Revision: 11981
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package/Makefile b/package/Makefile index a1f20b0b16..2a3354cf0a 100644 --- a/package/Makefile +++ b/package/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006-2007 OpenWrt.org +# +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -45,7 +45,9 @@ $(curdir)/rootfs-prepare: $(TMP_DIR)/.build $(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/ipkg) $(curdir)/index: FORCE - @(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages) + @(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \ + gzip -9c Packages > Packages.gz \ + ) $(curdir)/flags-install:= -j1 |