From 399d31cce86717ffdf9cfb192058abec23252afa Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 25 Mar 2008 09:24:55 +0000 Subject: [PATCH] Add OS-specific executable suffix to temporary executable name. Originally committed as revision 12574 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 86f9df5931..7e80f1f4eb 100755 --- a/configure +++ b/configure @@ -1299,7 +1299,7 @@ fi TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c" TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o" -TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}" +TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}" TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S" TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"