Merge pull request #775 from txtsd/distrofix

Use distro_fixes.sh from LNP if it exists
develop
Lethosor 2015-12-22 14:28:42 -05:00
commit 9fb1cf590d
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"