Make clear we compare strings, test(1) does not know of the == operator

This commit is contained in:
lostd 2014-02-05 14:45:38 +02:00
parent e7ced04ab7
commit 1e752b2b7a

2
stage0
View File

@ -24,7 +24,7 @@ build_pkg_dep() {
for d in $deps; do
install=1
for i in $installed_deps; do
if [ $i == $d ]; then
if [ "$i" = "$d" ]; then
# If already installed, then skip it
install=0
break