~ruther/guix-local

aebaeaee33231d5027dc26c05ac510e8324af3dd — Ludovic Courtès 12 years ago 64cc58b
gnu: lsh: Fix the absolute file name of 'sexp-conv'.

* gnu/packages/lsh.scm (lsh): Rename 'fix-test-suite' phase to
  'pre-configure'.  Set PATH_SEXP_CONV in environ.h.in.
1 files changed, 11 insertions(+), 2 deletions(-)

M gnu/packages/lsh.scm
M gnu/packages/lsh.scm => gnu/packages/lsh.scm +11 -2
@@ 95,8 95,17 @@ basis for almost any application.")

       #:phases
       (alist-cons-before
        'configure 'fix-test-suite
        (lambda _
        'configure 'pre-configure
        (lambda* (#:key inputs #:allow-other-keys)
          ;; Make sure 'lsh' and 'lshd' pick 'sexp-conv' in the right place by
          ;; default.
          (substitute* "src/environ.h.in"
            (("^#define PATH_SEXP_CONV.*")
             (let* ((nettle    (assoc-ref inputs "nettle"))
                    (sexp-conv (string-append nettle "/bin/sexp-conv")))
               (string-append "#define PATH_SEXP_CONV \""
                              sexp-conv "\"\n"))))

          ;; Tests rely on $USER being set.
          (setenv "USER" "guix")