Use = instead of == for comparision. (dash compatibility)

svn path=/trunk/; revision=30
This commit is contained in:
Johan Dahlin 2008-11-04 18:07:07 +00:00
parent e82e60f71b
commit e86920147b

View File

@ -42,7 +42,7 @@ if [ ! -f $HOME/.jhbuildrc-custom ]; then
echo "done"
fi
if test "x`echo $PATH | grep $HOME/bin`" == x; then
if test "x`echo $PATH | grep $HOME/bin`" = x; then
echo "PATH does not contain $HOME/bin, it is recommended that you add that."
echo
fi