Skip to content

Commit

Permalink
dvdisaster: fix $out variable expansion (makeFlags)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bennofs committed Mar 7, 2017
1 parent 0b2502a commit 3449107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/cd-dvd/dvdisaster/default.nix
Expand Up @@ -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
Expand Down

1 comment on commit 3449107

@nckx
Copy link
Member

@nckx nckx commented on 3449107 Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bad typo! Thanks.

Please sign in to comment.