Use distro_fixes.sh from LNP if it exists

develop
txtsd 2015-12-23 00:38:03 +05:30
parent c9eab65c96
commit 07e59139fd
1 changed files with 6 additions and 0 deletions

@ -34,6 +34,12 @@ fi
# Save current terminal settings
old_tty_settings=$(stty -g)
# Use distro_fixes.sh from LNP if it exists
DISTROFIXES="distro_fixes.sh"
if [ -r "$DISTROFIXES" ]; then
. "./$DISTROFIXES"
fi
# Now run
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./hack/libs":"./hack"