diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-05 16:02:32 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-05 16:02:32 +0100 |
commit | 7584f822bf076f4fc8aef9c1f4d48c179fe15fc3 (patch) | |
tree | 905afe27094a71e6730fc2428f213f28b4a956fd /distro/packages/lsh.scm | |
parent | 312543dcfc2b19063f172bd10bb437d6bfe62cff (diff) | |
download | guix-7584f822bf076f4fc8aef9c1f4d48c179fe15fc3.tar guix-7584f822bf076f4fc8aef9c1f4d48c179fe15fc3.tar.gz |
utils: Add `which'.
* guix/build/utils.scm (which): New procedure.
* distro/packages/lsh.scm (lsh): Use `which' instead of `search-path'.
* distro/packages/perl.scm (perl): Likewise.
* distro/packages/attr.scm (attr): Likewise.
Diffstat (limited to 'distro/packages/lsh.scm')
-rw-r--r-- | distro/packages/lsh.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distro/packages/lsh.scm b/distro/packages/lsh.scm index aa74c77b60..8f44967726 100644 --- a/distro/packages/lsh.scm +++ b/distro/packages/lsh.scm @@ -1,5 +1,5 @@ ;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*- -;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright (C) 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of Guix. ;;; @@ -114,8 +114,7 @@ (substitute* "src/testsuite/login-auth-test" (("/bin/cat") ;; Use the right path to `cat'. - (search-path (search-path-as-string->list (getenv "PATH")) - "cat")))) + (which "cat")))) %standard-phases))) (home-page "http://www.lysator.liu.se/~nisse/lsh/") (synopsis |