gnu: sdsl-lite: Fix build.
* gnu/packages/datastructures.scm (sdsl-lite)[arguments]: Fix typo in custom 'install-pkgconfig-file phase.master
parent
0e7731ba80
commit
a6b72a0f2b
|
@ -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 _
|
||||
|
|
Reference in New Issue