mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: libltdl: Use 'modify-phases'.
* gnu/packages/autotools.scm (libltdl)[arguments]: Use 'modify-phases' syntax.
This commit is contained in:
parent
01c7193e0b
commit
8c88e0ba8c
1 changed files with 3 additions and 5 deletions
|
@ -391,11 +391,9 @@ (define-public libltdl
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("--enable-ltdl-install") ;really install it
|
||||
#:phases (alist-cons-before
|
||||
'configure 'change-directory
|
||||
(lambda _
|
||||
(chdir "libltdl"))
|
||||
%standard-phases)))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'configure 'change-directory
|
||||
(lambda _ (chdir "libltdl") #t)))))
|
||||
|
||||
(synopsis "System-independent dlopen wrapper of GNU libtool")
|
||||
(description (package-description libtool))
|
||||
|
|
Loading…
Reference in a new issue