aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ipkg-make-index.sh
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-03-29 08:46:04 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-03-29 08:46:04 +0000
commit2f26f545cd6dbc5b42192b00376239fe85e07256 (patch)
treed25c40c2199c0ec8ea27b78b918df5f103a1fc17 /scripts/ipkg-make-index.sh
parent8e5803210752e21c123a987825970df27e873f25 (diff)
downloadupstream-2f26f545cd6dbc5b42192b00376239fe85e07256.tar.gz
upstream-2f26f545cd6dbc5b42192b00376239fe85e07256.tar.bz2
upstream-2f26f545cd6dbc5b42192b00376239fe85e07256.zip
ipkg-make-index: remove leading './' from the Filename field
SVN-Revision: 15069
Diffstat (limited to 'scripts/ipkg-make-index.sh')
-rwxr-xr-xscripts/ipkg-make-index.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh
index 46051045ae..c4c46f8882 100755
--- a/scripts/ipkg-make-index.sh
+++ b/scripts/ipkg-make-index.sh
@@ -15,7 +15,7 @@ for pkg in `find $pkg_dir -name '*.ipk' | sort`; do
file_size=$(ls -l $pkg | awk '{print $5}')
md5sum=$(md5sum $pkg | awk '{print $1}')
# Take pains to make variable value sed-safe
- sed_safe_pkg=`echo $pkg | sed -e 's/\\//\\\\\\//g'`
+ sed_safe_pkg=`echo $pkg | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g'`
tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\
Size: $file_size\\
MD5Sum: $md5sum\\