xkbvalidate: Use $CC instead of hardcoded gcc

I initially didn't use $CC because I thought this would be GCC specific,
but it turns out that Clang actually accepts -std=gnu11.

So using $CC here might not work on compilers other than Clang or GCC,
but at the moment those are the compilers we typically use in nixpkgs,
so even if we'd use some other compiler it *might* even work there.

I've tested this by compiling against clangStdenv with both $CC and
clang hardcoded and it works.

This was reported by @dkudriavtsev on IRC.

Signed-off-by: aszlig <aszlig@nix.build>
This commit is contained in:
aszlig 2019-08-14 23:57:20 +02:00
parent 3e78331d96
commit 77e8a12755
No known key found for this signature in database
GPG key ID: 684089CE67EBB691

View file

@ -10,6 +10,6 @@ runCommandCC "xkbvalidate" {
};
} ''
mkdir -p "$out/bin"
gcc -std=gnu11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
$CC -std=gnu11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
-o "$out/bin/validate"
''