pkgs/development/interpreters/maude: added proper quoting for the shell pattern in the postInstall hook

svn path=/nixpkgs/trunk/; revision=25692
This commit is contained in:
Peter Simons 2011-01-26 15:39:24 +00:00
parent bef4ae60e4
commit b42c943411

View file

@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
postInstall =
''
for n in $out/bin/*; do wrapProgram "$n" --suffix MAUDE_LIB ':' "$out/share/maude"; done
for n in "$out/bin/"*; do wrapProgram "$n" --suffix MAUDE_LIB ':' "$out/share/maude"; done
ensureDir $out/share/maude
cp ${fullMaude} $out/share/maude/full-maude.maude
'';