Merge pull request #7 from czchen/bugfix/equal

Fix = operator in sh
This commit is contained in:
Pedro 2014-05-17 23:30:45 +08:00
commit 03888e5c65

View file

@ -20,7 +20,7 @@ for l in glibtoolize libtoolize15 libtoolize14 libtoolize ; do
echo "Did not find $l"
done
if [ "x$libtoolize" == "x" ]; then
if [ "x$libtoolize" = "x" ]; then
echo "Can't find libtoolize on your system"
exit 1
fi