gnu: libltdl: Use 'modify-phases'.
* gnu/packages/autotools.scm (libltdl)[arguments]: Use 'modify-phases' syntax.
This commit is contained in:
parent
01c7193e0b
commit
8c88e0ba8c
|
@ -391,11 +391,9 @@ complexity of working with shared libraries across platforms.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--enable-ltdl-install") ;really install it
|
'(#:configure-flags '("--enable-ltdl-install") ;really install it
|
||||||
#:phases (alist-cons-before
|
#:phases (modify-phases %standard-phases
|
||||||
'configure 'change-directory
|
(add-before 'configure 'change-directory
|
||||||
(lambda _
|
(lambda _ (chdir "libltdl") #t)))))
|
||||||
(chdir "libltdl"))
|
|
||||||
%standard-phases)))
|
|
||||||
|
|
||||||
(synopsis "System-independent dlopen wrapper of GNU libtool")
|
(synopsis "System-independent dlopen wrapper of GNU libtool")
|
||||||
(description (package-description libtool))
|
(description (package-description libtool))
|
||||||
|
|
Loading…
Reference in New Issue