(svn r19572) -Change: sync Debian packaging updates from Debian, but keep building a single package

This commit is contained in:
rubidium
2010-04-07 14:07:49 +00:00
parent 8138c532d2
commit a993ceb133
12 changed files with 282 additions and 189 deletions

View File

@@ -2,8 +2,10 @@
# This is a wrapper script that checks openttd's exit status and
# displays its stderr output
# Get a file to capture stderr to
TMPFILE=`mktemp --tmpdir openttd.errout.XXXXXXXXX`
# Get a file to capture stderr to. Use the deprecated -t option, so this
# works on the old mktemp from the mktemp package (which has been
# replaced by the version from the coreutils package).
TMPFILE=`mktemp -t openttd.errout.XXXXXXXXX`
if [ ! -w "$TMPFILE" ]; then
xmessage "Could not create temporary file for error messages. Not starting OpenTTD."