From 16f722500ebc686699271f13e47769c7ad881cbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 26 Sep 2013 20:23:19 +0200 Subject: [PATCH] autojump: correctly set prefix --- pkgs/tools/misc/autojump/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix index 9955e814a75..5371ac55adb 100644 --- a/pkgs/tools/misc/autojump/default.nix +++ b/pkgs/tools/misc/autojump/default.nix @@ -19,13 +19,11 @@ in # don't check shell support (we're running with bash anyway) sed -i -e 150,153d install.sh - bash ./install.sh -d $out + bash ./install.sh -d $out -p "" chmod +x $out/etc/profile.d/* mkdir -p "$out/etc/bash_completion.d" cp -v $out/etc/profile.d/autojump.bash "$out/etc/bash_completion.d" - mkdir -p $out/bin - ln -s $out/usr/local/bin/autojump $out/bin/j # FIXME: What's the right place for `autojump.zsh'? '';