From 34fe0833c8ace813dc22e659af6a9a1a52cb36f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 15 Jan 2016 10:25:31 +0100 Subject: [PATCH] iozone: commit some forgotten fixups (/cc #12387) --- pkgs/development/tools/misc/iozone/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/iozone/default.nix b/pkgs/development/tools/misc/iozone/default.nix index d51a15bbee9..ad3a64d22ba 100644 --- a/pkgs/development/tools/misc/iozone/default.nix +++ b/pkgs/development/tools/misc/iozone/default.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { buildFlags = target; installPhase = '' - mkdir -p $out/{man,bin,doc} - install docs/iozone.1 $out/man/ - install docs/Iozone_ps.gz $out/doc/ + mkdir -p $out/{bin,share/doc,share/man/man1} + install docs/iozone.1 $out/share/man/man1/ + install docs/Iozone_ps.gz $out/share/doc/ install -s src/current/{iozone,fileop,pit_server} $out/bin/ # License copy is mandated by the license, but it's not in the tarball. - install ${license} $out/doc/Iozone_License.txt + install ${license} $out/share/doc/Iozone_License.txt ''; meta = {