compiler.txt: ensure file exists before comparison (#18921)

This commit is contained in:
Ryan 2022-11-01 11:35:38 +11:00 committed by GitHub
parent 5974d989fe
commit 7ebc396876
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -332,6 +332,7 @@ $1/asflags.txt: $1/force
echo '$$($1_ASFLAGS)' | cmp -s - $$@ || echo '$$($1_ASFLAGS)' > $$@
$1/compiler.txt: $1/force
test -f $$@ || touch $$@
$$(CC) --version | cmp -s - $$@ || $$(CC) --version > $$@
endef