View Single Post
Posts: 267 | Thanked: 183 times | Joined on Jan 2010 @ Campinas, SP, Brazil
#38
If I try to run it from the menu, it doesn't work.

I've noticed that when I tried to run it from the terminal:

[user@n900 MyDocs]% /opt/qvernote/qvernote
/opt/qvernote/qvernote: error while loading shared libraries: libEvernote.so: cannot open shared object file: No such file or directory
A quick hack solved the issue:

[user@n900 MyDocs]% export LD_LIBRARY_PATH=/opt/lib
[user@n900 MyDocs]% /opt/qvernote/qvernote
...and it worked. But it would be better if the program would solve this issue by itself. Maybe add /opt/lib to /etc/ld.so.conf if it's not there? Maybe you can add this to the deb's postinst script:

grep -q '^/opt/lib$' /etc/ld.so.conf || {
echo "/opt/lib" >> /etc/ld.so.conf
ldconfig
}
__________________
My nickname on freenode is ptl, that is, the consonants of my nickname here. Kind of a long story.

Last edited by Patola; 2010-06-15 at 20:41.