Skip to content

Commit

Permalink
Don't use full path for setting CC
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
  • Loading branch information
daverodgman committed Jan 4, 2024
1 parent 9d2c67f commit e42c235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pre_initialize_variables () {
fi
# if CC is not set, use clang by default (if present) to improve build times
if [ -z "${CC+set}" ] && (type clang > /dev/null 2>&1); then
export CC=$(type -p clang)
export CC="clang"
fi

# Include more verbose output for failing tests run by CMake or make
Expand Down

0 comments on commit e42c235

Please sign in to comment.