[Scummvm-cvs-logs] scummvm-tools master -> 258f7c0beef06e4adb9309d37176b7fbbf0945bf
digitall
dgturner at iee.org
Sat Nov 24 00:03:50 CET 2012
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .
Summary:
258f7c0bee BUILD: Create configure temp files in build dir.
Commit: 258f7c0beef06e4adb9309d37176b7fbbf0945bf
https://github.com/scummvm/scummvm-tools/commit/258f7c0beef06e4adb9309d37176b7fbbf0945bf
Author: D G Turner (digitall at scummvm.org)
Date: 2012-11-23T15:02:12-08:00
Commit Message:
BUILD: Create configure temp files in build dir.
This fixes detection issues with a noexec /tmp (bug #3009167),
and matches what autoconf does. There should be no need to
randomize temp file names in the build dir.
This is as per svn r52659 (2ba62328d24d2df8675182b5e9d7142111b4e83c)
in the main ScummVM repo.
Changed paths:
configure
diff --git a/configure b/configure
index 271abde..b103eac 100755
--- a/configure
+++ b/configure
@@ -98,12 +98,8 @@ _freetypelibs=""
_srcdir=`dirname $0`
-# Determine a tmp file name, using mktemp(1) when available.
-if type mktemp > /dev/null 2>&1 ; then
- TMPO=`mktemp /tmp/scummvm-conf.XXXXXXXXXX`
-else
- TMPO=./scummvm-tools-conf
-fi
+# Use temp files in the build directory
+TMPO=./scummvm-tools-conf
TMPC=${TMPO}.cpp
TMPLOG=config.log
More information about the Scummvm-git-logs
mailing list