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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue