Rephrased some Linux wrapper script hints

This commit is contained in:
Tom Reynolds
2016-07-12 21:50:18 +02:00
parent 9dd22ae347
commit b71277b304

View File

@@ -44,13 +44,22 @@ if [ "$OperatingMode" != "--tool-buginfo" ]; then
LDconfigType=9 LDconfigType=9
fi fi
LibsWarnings="$LibsWarnings LibsWarnings="$LibsWarnings
|| If for some reason you see an error related with library, then you should try install this library || MegaGlest requires some libraries to be present on this system.
|| in your linux. Hints with full names and with default versions of just detected missing libraries you || Missing libraries (if any) will be listed next, along with full names
|| see below. || and default versions. Use the package manager your Linux distribution
|| You can also perform mini update by launch '${SHORT_GAME_NAME}-mini-update.sh' script, which may solve tiny problems. || provides to install them. Most Linux distributions provide a web search
|| If it is other problem or after your tries it still doesn't work then please report a bug || allowing you to identify the packages containing these libraries.
|| here: '$BugReportEngine', || Once you installed additional libraries, just run this script again.
|| or here: '$BugReportBoth'." ||
|| Other issues preventing MegaGlest from starting can occur if this
|| version of MegaGlest has not been tested with this version of your Linux
|| distribution. If so, we may provide compatibility updates which can be
|| downloaded and installed by running this script:
|| '${SHORT_GAME_NAME}-mini-update.sh'
||
|| If, after this, MegaGlest still fails to start, please report a bug at
|| '$BugReportEngine'
|| or '$BugReportBoth'"
LibsWarnings="$LibsWarnings LibsWarnings="$LibsWarnings
|| ||
|| Found LDCONFIG variable [$LDconfigType][$LDCONFIG]... || Found LDCONFIG variable [$LDconfigType][$LDCONFIG]...
@@ -316,7 +325,7 @@ if [ "$ExitStatus" -ne "0" ] || [ "$OperatingMode" = "--tool-editor" ] || [ "$Op
if [ "$DiffTime" -le "15" ] && [ -e "$GAMEDIR/$BinaryToCheck" ] && [ -x "$GAMEDIR/$BinaryToCheck" ]; then if [ "$DiffTime" -le "15" ] && [ -e "$GAMEDIR/$BinaryToCheck" ] && [ -x "$GAMEDIR/$BinaryToCheck" ]; then
echo "$LibsWarnings" | sed 's/^[\t ]*||//g' >&2; echo echo "$LibsWarnings" | sed 's/^[\t ]*||//g' >&2; echo
if [ "$IgnoredLibs" != "" ]; then if [ "$IgnoredLibs" != "" ]; then
echo "... and as information useful only for game developers, List of ignored libs:" >&2 echo "Ignored libraries (please include in bug reports):" >&2
echo "$IgnoredLibs" >&2; echo echo "$IgnoredLibs" >&2; echo
fi fi
else else