|
From: Fredrik K. <sci...@us...> - 2010-09-03 16:12:40
|
Module: performous Branch: master Commit: 347eeeebda1dff04515137892f7b557d83bbcf73 Author: Fredrik Klasson <sci...@gm...> Date: Fri Sep 3 18:12:07 2010 +0200 [ ] Make xml_gettext.sh use the propper temp dir in the system (see --tmpdir in mktemp(1) for details) --- tools/scripts/xml_gettext.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/scripts/xml_gettext.sh b/tools/scripts/xml_gettext.sh index d7ff320..012ac8a 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 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 |