[Scummvm-cvs-logs] SF.net SVN: scummvm:[52659] scummvm/trunk/configure

wjpalenstijn at users.sourceforge.net wjpalenstijn at users.sourceforge.net
Thu Sep 9 16:01:48 CEST 2010


Revision: 52659
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52659&view=rev
Author:   wjpalenstijn
Date:     2010-09-09 14:01:48 +0000 (Thu, 09 Sep 2010)

Log 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.

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2010-09-09 14:01:33 UTC (rev 52658)
+++ scummvm/trunk/configure	2010-09-09 14:01:48 UTC (rev 52659)
@@ -193,12 +193,8 @@
 _srcdir=`dirname $0`
 _port_mk="ports.mk"
 
-# 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-conf
-fi
+# Use temp files in the build directory
+TMPO=./scummvm-conf
 TMPC=${TMPO}.cpp
 TMPLOG=config.log
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list