ipkg-make-index: use more backwards-compatible openssl call for SHA256

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38440 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cyrus 2013-10-17 19:32:28 +00:00
parent 4511c244aa
commit 35b7f766d2

View file

@ -18,7 +18,7 @@ for pkg in `find $pkg_dir -name '*.ipk' | sort`; do
echo "Generating index for package $pkg" >&2
file_size=$(ls -l $pkg | awk '{print $5}')
md5sum=$(md5sum $pkg | awk '{print $1}')
sha256sum=$(openssl sha256 $pkg | awk '{print $2}')
sha256sum=$(openssl dgst -sha256 $pkg | awk '{print $2}')
# Take pains to make variable value sed-safe
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\\