mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
pkgsMusl.vte: fix build (#193930)
This commit is contained in:
parent
2f631dc7f3
commit
bb49ddebc9
|
@ -83,6 +83,9 @@ stdenv.mkDerivation rec {
|
|||
"-D_b_symbolic_functions=false"
|
||||
];
|
||||
|
||||
# error: argument unused during compilation: '-pie' [-Werror,-Wunused-command-line-argument]
|
||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isMusl "-Wno-unused-command-line-argument";
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs perf/*
|
||||
patchShebangs src/box_drawing_generate.sh
|
||||
|
|
Loading…
Reference in a new issue