mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: libaio: Do not install the static library.
* gnu/packages/linux.scm (libaio)[arguments]: Add phase 'delete-static-library'.
This commit is contained in:
parent
2fabf398c1
commit
d60458d77c
1 changed files with 7 additions and 1 deletions
|
@ -3826,7 +3826,13 @@ Linux Device Mapper multipathing driver:
|
||||||
(list "CC=gcc" (string-append "prefix=" %output))
|
(list "CC=gcc" (string-append "prefix=" %output))
|
||||||
#:test-target "partcheck" ; need root for a full 'check'
|
#:test-target "partcheck" ; need root for a full 'check'
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases (delete 'configure)))) ; no configure script
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure) ;no configure script
|
||||||
|
(add-after 'install 'delete-static-library
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(delete-file (string-append out "/lib/libaio.a"))
|
||||||
|
#t))))))
|
||||||
(home-page "https://pagure.io/libaio")
|
(home-page "https://pagure.io/libaio")
|
||||||
(synopsis "Linux-native asynchronous I/O access library")
|
(synopsis "Linux-native asynchronous I/O access library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue