DUUUH! Let this be a lesson: do NOT stay up to 4:am to create software packages for your phone. Yesterday night I had the same problem as you people. Then I fixed the problem. And then I uploaded the wrong package.
I'm really sorry.
I am at work right now and cannot upload an updated version for a while; but here is the version of the main.lin script I indended to be installed:
Code:
#! /bin/sh
if [ "$(id -u)" != "0" -a -z "$1" ]; then
exec /sbin/start-stop-daemon -S -c root:root -x "$0" -- restart
exit 1
fi
export QTDIR="./qt"
export LD_LIBRARY_PATH="./lib:./qt/lib:$LD_LIBRARY_PATH"
export PS1="# "
export SHELL="/bin/bash"
if [ ! -x ./qonsole ]; then
chmod +x ./qonsole
fi
exec ./qonsole
exit 1
Sorry...