Tests: use cc instead of gcc.

This fixes problems where llvm is installed without a 'gcc' alias.
This commit is contained in:
Avery Pennarun 2018-10-29 07:20:33 +00:00
commit 6c81b110be
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
DEPS="main.o
mystr.o"
redo-ifchange $DEPS
gcc -o $3 $DEPS
cc -o $3 $DEPS