summary refs log tree commit diff
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>2022-06-14 18:25:44 +0200
committerQuentin Carbonneaux <quentin@c9x.me>2022-06-14 18:46:38 +0200
commit2b451a28d8e98d5919e94dd611a8d9c66a9396af (patch)
tree9c330131b516122ad1d2ef808a80a0cd2432d9c2
parent6cd5f7028647a88935ec1f7776a08b51eb0fb1c8 (diff)
downloadroux-2b451a28d8e98d5919e94dd611a8d9c66a9396af.tar.gz
tools/test.sh: Without a TARGET, use $CC if defined
cc can be absent in Gentoo to make sure the right compiler is picked,
for example when clang is preferred or when cross-compiling.
-rwxr-xr-xtools/test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.sh b/tools/test.sh
index 536d240..4653b83 100755
--- a/tools/test.sh
+++ b/tools/test.sh
@@ -79,8 +79,8 @@ init() {
 			cc="cc"
 			;;
 		*)
-			cc="cc -no-pie"
-			testcc "$cc" || cc="cc"
+			cc="${CC:-cc} -no-pie"
+			testcc "$cc" || cc="${CC:-cc}"
 			;;
 		esac
 		TARGET=`$bin -t?`