diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-08-30 15:48:32 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-08-30 15:49:47 +0300 |
commit | a6b72a0f2b02f27c44c28d32ec26fc8188ee61b8 (patch) | |
tree | 025446e8758e65965c0b6bbfa8dc39d60f8e578d | |
parent | 0e7731ba801a581a00fdf6113c87c46236c673c5 (diff) | |
download | guix-a6b72a0f2b02f27c44c28d32ec26fc8188ee61b8.tar.gz |
gnu: sdsl-lite: Fix build.
* gnu/packages/datastructures.scm (sdsl-lite)[arguments]: Fix typo in custom 'install-pkgconfig-file phase.
-rw-r--r-- | gnu/packages/datastructures.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index 6121d63325..3203f91608 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -246,8 +246,8 @@ to the structure and choosing one or more fields to act as the key.") #t)) (add-after 'install 'install-pkgconfig-file (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out")) - (lib (string-append out "/lib"))) + (let* ((out (assoc-ref outputs "out")) + (lib (string-append out "/lib"))) (mkdir-p (string-append lib "/pkgconfig")) (with-output-to-file (string-append lib "/pkgconfig/sdsl-lite.pc") (lambda _ |