mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
tcl.mkTclDerivation: fix exec prefix
Shell variables are not expanded, so the old value was just the literal string `${out}`. Fixes #139566
This commit is contained in:
parent
bb87e609c0
commit
2fb7cd664e
@ -32,7 +32,7 @@ let
|
||||
defaultTclPkgConfigureFlags = [
|
||||
"--with-tcl=${tcl}/lib"
|
||||
"--with-tclinclude=${tcl}/include"
|
||||
"--exec-prefix=\${out}"
|
||||
"--exec-prefix=${placeholder "out"}"
|
||||
];
|
||||
|
||||
self = (stdenv.mkDerivation ((builtins.removeAttrs attrs [
|
||||
|
Loading…
Reference in New Issue
Block a user