forked from mirrors/nixpkgs
dvdisaster: fix $out variable expansion (makeFlags)
Make requires variables with more than one letter to be surrounded by parentheses, like `$(out)`. Just writing `$out` will be interpreted as `$o` followed by `ut`, so the package installed its documentaion to `ut/share/doc`. /cc maintainers @jgeerds @nckx
This commit is contained in:
parent
0b2502a284
commit
3449107d68
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = [
|
||||
# Explicit --docdir= is required for on-line help to work:
|
||||
"--docdir=$out/share/doc"
|
||||
"--docdir=share/doc"
|
||||
"--with-nls=yes"
|
||||
"--with-embedded-src-path=no"
|
||||
] ++ stdenv.lib.optional (builtins.elem stdenv.system
|
||||
|
|
Loading…
Reference in a new issue