|
From: Lasse Kärkkäi. <tr...@us...> - 2010-09-22 02:04:11
|
Module: performous Branch: ssxml Commit: fc14d16207943535fbc118e900ed0cb1a16d0892 Author: Anders Jenbo <an...@je...> Date: Tue Sep 21 22:32:29 2010 +0200 make mktemp command compatible with older versions --- tools/scripts/xml_gettext.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/scripts/xml_gettext.sh b/tools/scripts/xml_gettext.sh index 012ac8a..dc8b678 100755 --- a/tools/scripts/xml_gettext.sh +++ b/tools/scripts/xml_gettext.sh @@ -98,7 +98,7 @@ shift shift # create the temporary file securely. -TEMP_SRC=$(mktemp --tmpdir xml2gettext.XXXXXXXXXX.c) +TEMP_SRC=$(mktemp --tmpdir xml2gettext.XXXXXXXXXX).c append_temp_src "/* This is a automatically generated temp file, it's safe to remove*/" # Start the dirty work @@ -113,4 +113,4 @@ RV=$? # clean up rm "$TEMP_SRC" -exit $RV \ No newline at end of file +exit $RV |