mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
libxml2: fix configure flags
`$dev` will be substituted by empty string (would have to be `$(dev)`), causing issues in 2.9.13. Let’s fix that and use the cannonical name.
This commit is contained in:
parent
65ca2a4bbb
commit
7eb38d554c
@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--exec_prefix=$dev"
|
||||
"--exec-prefix=${placeholder "dev"}"
|
||||
(lib.enableFeature enableStatic "static")
|
||||
(lib.enableFeature enableShared "shared")
|
||||
(lib.withFeature icuSupport "icu")
|
||||
|
Loading…
Reference in New Issue
Block a user