[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: Revert "gnu: libaio: Do not install the static library."
From: |
guix-commits |
Subject: |
02/03: Revert "gnu: libaio: Do not install the static library." |
Date: |
Sat, 15 Feb 2020 15:02:31 -0500 (EST) |
mbakke pushed a commit to branch staging
in repository guix.
commit 21bdf383d7de83d523997d1689b8a2f6a5b858ef
Author: Marius Bakke <address@hidden>
AuthorDate: Sat Feb 15 20:14:52 2020 +0100
Revert "gnu: libaio: Do not install the static library."
This change breaks 'lvm2-static' which cannot easily be made to work with a
separate libaio.a due to missing symbols.
This reverts commit d60458d77c53f2894d7c1f0649bf24e3f048db8b.
---
gnu/packages/linux.scm | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index ef04a42..0dba6a3 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3826,13 +3826,7 @@ Linux Device Mapper multipathing driver:
(list "CC=gcc" (string-append "prefix=" %output))
#:test-target "partcheck" ; need root for a full 'check'
#:phases
- (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))))))
+ (modify-phases %standard-phases (delete 'configure)))) ; no configure
script
(home-page "https://pagure.io/libaio")
(synopsis "Linux-native asynchronous I/O access library")
(description