mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ots: Make sure the shared library has the '.so' extension.
Fixes <http://bugs.gnu.org/18521>. * gnu/packages/ots.scm (ots)[arguments]: Add #:phases.
This commit is contained in:
parent
12bcf94a9a
commit
50fe945c01
1 changed files with 13 additions and 1 deletions
|
@ -47,7 +47,19 @@ (define-public ots
|
|||
(arguments
|
||||
;; With '-jN', the rule to build the 'ots' command can be triggered
|
||||
;; before libots-1.la has been built.
|
||||
'(#:parallel-build? #f))
|
||||
'(#:parallel-build? #f
|
||||
|
||||
#:phases (alist-cons-after
|
||||
'configure 'set-shared-lib-extension
|
||||
(lambda _
|
||||
;; For some reason, the 'libtool' script (from Libtool
|
||||
;; 1.5.2, Debian variant) sets 'shrext_cmds' instead of
|
||||
;; 'shrext' for the shared library file name extension.
|
||||
;; This leads to the creation of 'libots-1' instead of
|
||||
;; 'libots-1.so'. Fix that.
|
||||
(substitute* "libtool"
|
||||
(("shrext_cmds") "shrext")))
|
||||
%standard-phases)))
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("popt" ,popt)
|
||||
|
|
Loading…
Reference in a new issue