From 3cb3651bc80f1d6ec97ae544b9356602dbc3349c Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 10 Aug 2005 10:51:50 +0000 Subject: [PATCH] Fixed harmless /tmp problem. --- programs/winelauncher.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/programs/winelauncher.in b/programs/winelauncher.in index 9f4851fdc1f..55f6c0ef9b6 100755 --- a/programs/winelauncher.in +++ b/programs/winelauncher.in @@ -59,8 +59,8 @@ type xmessage >/dev/null 2>/dev/null if [ $? -ne 0 ] ; then # xmessage not found; make sure the user notices this error # (GUI users wouldn't even notice if we printed the text on console !) - MSGFILE=/tmp/WINE_CANNOT_FIND_XMESSAGE - cat > $MSGFILE << EOF + MSGFILE=`mktemp "/tmp/wine.xmessage.XXXXXX"` + cat > $MSGFILE <