Skip to content

Commit

Permalink
oebb.sh: fix autorun logic
Browse files Browse the repository at this point in the history
  • Loading branch information
koenkooi committed Oct 20, 2010
1 parent 1631d04 commit 0ed3d15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oebb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ else
#--------------------------------------------------------------------------
# Reconfigure dash
#--------------------------------------------------------------------------
if [ $(readlink /bin/sh) = "dash" ] ; then
if [ "$(readlink /bin/sh)" = "dash" ] ; then
sudo aptitude install expect -y
expect -c 'spawn sudo dpkg-reconfigure -freadline dash; send "n\n"; interact;'
fi
Expand Down Expand Up @@ -166,6 +166,7 @@ function oe_build()
echo "No config found, please run $0 config <machine> first"
else
CL_MACHINE=$MACHINE
set_environment
config_oe && update_all
fi
fi
Expand Down

0 comments on commit 0ed3d15

Please sign in to comment.