menugen
menugen copied to clipboard
Menugen expects to be run from its home directory
Attempts to run menugen
from other directories (including, for example, double-clicking the helloworld
example) fail because line 31 of menugen
expects menugenbase
to be in the current directory. A patch that seems to work is changing line 31 to source $(dirname "$0")/menugenbase
.