|
You should just go back to the original launch script (/usr/bin/sigil). It's correct. Just reinstall Sigil to recreate it.
The following line in your modified launch script is not syntactically correct:
export LD_LIBRARY_PATH="$SIGIL_LIB_DIR${LD_LIBRARY_PATH:+ :$LD_LIBRARY_PATH}"
It should be:
export LD_LIBRARY_PATH="$SIGIL_BIN_DIR:$LD_LIBRARY_PATH"
Adding the /etc/ld.so.conf.d/sigil.conf may fix whatever is incorrect on your system, but it's not necessary for a working Sigil installation from the Arch repositories--with any version.
I won't try to convince to to get it properly straightened out if you're fine with your current bandaid, but I worry it will cause other problems down the road.
|