mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #175779 from patricksjackson/fno-common-xbindkeys
xbindkeys-config: add -fcommon workaround
This commit is contained in:
commit
66def2957e
@ -4,6 +4,10 @@ stdenv.mkDerivation rec {
|
||||
pname = "xbindkeys-config";
|
||||
version = "0.1.3";
|
||||
|
||||
# Workaround build failure on -fno-common toolchains like upstream
|
||||
# gcc-10.
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||
buildInputs = [ gtk ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user