diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-29 08:46:04 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-29 08:46:04 +0000 |
commit | a9cc077fde8a4e433d01644d372bc0eb2eaf1424 (patch) | |
tree | 5a1ee7be85639a4e4ecd7e0408bc8115eee9bf77 | |
parent | 4abd754c5cdeba5ae9f03ff48945527fb9e2ed91 (diff) |
[scripts] ipkg-make-index: remove leading './' from the Filename field
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15069 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/ipkg-make-index.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index 46051045a..c4c46f888 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\\ |