about summary refs log tree commit diff
path: root/pkgs/tools/X11/xrectsel
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-03-03 12:57:24 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-03-03 12:59:54 +0100
commitac592121b9df83a81d2d90be1c40c2d393689ce5 (patch)
tree1a2363d67b022762ba24b16e62e7d8160d6f81da /pkgs/tools/X11/xrectsel
parenta8458bb506daf18cd83d9a5e159dbaa67c7592c4 (diff)
xrectsel: remove unnecessary DESTDIR=$out
This avoids files being installed to $out/nix/store
Diffstat (limited to 'pkgs/tools/X11/xrectsel')
-rw-r--r--pkgs/tools/X11/xrectsel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/X11/xrectsel/default.nix b/pkgs/tools/X11/xrectsel/default.nix
index f38ecab9f1127..e54ced714e765 100644
--- a/pkgs/tools/X11/xrectsel/default.nix
+++ b/pkgs/tools/X11/xrectsel/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ libX11 ];
 
   postBuild = ''
-    make DESTDIR="$out" install
+    make install
   '';
 
   meta = with stdenv.lib; {