util: make-spike-elf.sh: Fix busybox mktemp compatibility

Busybox mktemp does not support patterns with any characters after the XXXXXX
part. Drop the .o extension to make make-spike-elf.sh work on Alpine Linux.

Change-Id: I2e37ceef115c6d4d31eb617558481b2284dada83
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/23174
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Jonathan Neuschäfer 2018-01-08 18:31:42 +01:00 committed by Martin Roth
parent 61864143d4
commit 3af80a9377
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ if [ $# -ne 2 ]; then
fi fi
FLAT_FILE="$1" FLAT_FILE="$1"
OBJECT_FILE=$(mktemp /tmp/coreboot-spike.XXXXXX.o) OBJECT_FILE=$(mktemp /tmp/coreboot-spike.XXXXXX)
ELF_FILE="$2" ELF_FILE="$2"
TOOL_PATH="$(dirname "$0")" TOOL_PATH="$(dirname "$0")"
XGCC_BIN="$TOOL_PATH/../crossgcc/xgcc/bin" XGCC_BIN="$TOOL_PATH/../crossgcc/xgcc/bin"