From 86cc70871ceecfa5d26ce1b736a48b59658ea628 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Fri, 29 Sep 2023 22:32:04 +0100 Subject: [PATCH] fix make issue Signed-off-by: Dave Rodgman --- tests/scripts/all.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index ba43d133d..14d32c158 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -4016,10 +4016,9 @@ component_build_aes_variations() { echo "all: ${DEPS}" >> $MAKEFILE - MAKEFILE_CONTENT=`cat $MAKEFILE` - rm ${MAKEFILE} NCPUS=$(lscpu -p|tail -n1|sed 's/,.*//') - echo $MAKEFILE_CONTENT | make --quiet -j$((NCPUS * 2)) -f ${MAKEFILE} all + make --quiet -j$((NCPUS * 2)) -f ${MAKEFILE} all + rm ${MAKEFILE} } component_test_no_platform () {