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:
parent
3e78331d96
commit
77e8a12755
@ -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"
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user