Comment 11 for bug 34693

Revision history for this message
mlamertz (ubuntu-tweety) wrote :

stracing xaos shows, that a configure-variable isn't properly expanded in the compiled binary:

Try 'strace -e open xaos', then hit F1 and you'll see among others

open("${prefix}/share/XaoS/help/xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/mlamertz//help/xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/mlamertz//../help/xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)
open("./help/xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)
open("../help/xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)
open("./xaos.hlp", O_RDONLY) = -1 ENOENT (No such file or directory)

Note the first line's "${prefix}/share/..."?