summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index d3d2026789..d811eab36b 100755
--- a/configure
+++ b/configure
@@ -64,10 +64,10 @@ compile_check() {
echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
rm -f "$TMPEXE"
$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
- TMP="$?"
+ TMPRES="$?"
echo >> "$TMPLOG"
echo >> "$TMPLOG"
- return "$TMP"
+ return "$TMPRES"
}
cc_check() {
@@ -85,10 +85,10 @@ yasm_check() {
echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
rm -f "$TMPEXE"
$_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
- TMP="$?"
+ TMPRES="$?"
echo >> "$TMPLOG"
echo >> "$TMPLOG"
- return "$TMP"
+ return "$TMPRES"
}
tmp_run() {