mirror of
https://git.yoctoproject.org/git/opkg-utils
synced 2026-05-07 06:17:02 +02:00
opkg-build: Remove bashism in sh script
Otherwise this fills logs with output on systems with dash as /bin/sh, we might as well execute cleanly. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -239,7 +239,7 @@ rm $tmp_dir/tarX
|
||||
|
||||
echo "2.0" > $tmp_dir/debian-binary
|
||||
|
||||
if (( $opkext == 1)); then
|
||||
if [ $opkext -eq 1 ]; then
|
||||
pkg_file=$dest_dir/${pkg}_${version}_${arch}.opk
|
||||
else
|
||||
pkg_file=$dest_dir/${pkg}_${version}_${arch}.ipk
|
||||
|
||||
Reference in New Issue
Block a user