Revert "Revert "Fix for jar finding in freecol.sh, from Michael Vetter.""

This reverts commit ac5128075e.
This commit is contained in:
calebrw 2016-09-21 16:56:33 -05:00
parent 58f0b3ee6b
commit 73e1dd6b83
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ elif test -r "${FREECOLJAR}" ; then
elif test -r "${BINDIR}/${FREECOLJAR}" ; then
FCJAR="${BINDIR}/${FREECOLJAR}"
# - Is it in a likely linux FHS place?
elif test -d "/usr/share/java/${FREECOLJAR}" ; then
elif test -r "/usr/share/java/${FREECOLJAR}" ; then
FCJAR="/usr/share/java/${FREECOLJAR}"
# Give up.
else