From 15ff877438a57936d620622cee8fb98cea607d08 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Tue, 11 Oct 2005 17:30:57 +0000 Subject: [PATCH] add @coreutils@ to correctly use coreutils to create a profile. This is needed for NixOS, where we might not know our PATH in advance. --- scripts/nix-profile.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in index 7f19f80148..dc695be82f 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -4,7 +4,7 @@ if test -n "$HOME"; then if ! test -L "$NIX_LINK"; then echo "creating $NIX_LINK" _NIX_DEF_LINK=@localstatedir@/nix/profiles/default - ln -s "$_NIX_DEF_LINK" "$NIX_LINK" + @coreutils@/ln -s "$_NIX_DEF_LINK" "$NIX_LINK" fi export PATH=$NIX_LINK/bin:@prefix@/bin:$PATH