diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-11 01:29:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-11 01:29:11 +0000 |
commit | 9141e1f560684ac04b5f56f62306089622e1132c (patch) | |
tree | 179e804bd00f7d1bc831cc48bfb64921f75b3dfe /scripts | |
parent | bee3dd6a1b79da40d437f53c0b4547f156843369 (diff) | |
download | upstream-9141e1f560684ac04b5f56f62306089622e1132c.tar.gz upstream-9141e1f560684ac04b5f56f62306089622e1132c.tar.bz2 upstream-9141e1f560684ac04b5f56f62306089622e1132c.zip |
package/index: filter out the libc package from the index
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32187 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ipkg-make-index.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index 31b4327da3..cbfa450c0a 100755 --- a/scripts/ipkg-make-index.sh +++ b/scripts/ipkg-make-index.sh @@ -14,6 +14,7 @@ for pkg in `find $pkg_dir -name '*.ipk' | sort`; do name="${pkg##*/}" name="${name%%_*}" [[ "$name" = "kernel" ]] && continue + [[ "$name" = "libc" ]] && continue echo "Generating index for package $pkg" >&2 file_size=$(ls -l $pkg | awk '{print $5}') md5sum=$(md5sum $pkg | awk '{print $1}') |