mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
fontconfig: Fix cross building (#534344)
This commit is contained in:
commit
6abb7846c4
1 changed files with 2 additions and 1 deletions
|
|
@ -67,11 +67,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
]
|
||||
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||
"--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
|
||||
"ac_cv_va_copy=C99"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
||||
|
||||
installFlags = [
|
||||
# Don't try to write to /var/cache/fontconfig at install time.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue