View Single Post
Posts: 1,196 | Thanked: 1,413 times | Joined on Aug 2011
#165
Originally Posted by shmerl View Post
For example do:

Code:
export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
and then run it.
Like that?

1) copy qt-fennec to /home/user
2) copy qt-fennec.desktop to /usr/share/applications
3) chmod +x /home/user/qt-fennec

#!/bin/sh
url=$1
cd /opt/mozbuildhm
export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
if [ "$url" = "" ]; then url="http://www.google.com/"; fi
./qmlMozEmbedTest -url $url
 

The Following User Says Thank You to n950 For This Useful Post: