gnu: orbit2: Do not build static libraries.

* gnu/packages/gnome.scm (orbit2)[arguments]: Add "--disable-static" to
 #:configure-flags.
This commit is contained in:
Ludovic Courtès 2018-11-27 13:51:52 +01:00
parent bc0d24292d
commit 8aad2e32e5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1321,9 +1321,13 @@ (define-public orbit2
(build-system gnu-build-system)
(arguments
`(#:configure-flags
;; The programmer kindly gives us a hook to turn off deprecation
;; warnings ...
'("DISABLE_DEPRECATED_CFLAGS=-DGLIB_DISABLE_DEPRECATION_WARNINGS")
'(;; We don't need static libraries, plus they don't build reproducibly
;; (non-deterministic ordering of .o files in the archive.)
"--disable-static"
;; The programmer kindly gives us a hook to turn off deprecation
;; warnings ...
"DISABLE_DEPRECATED_CFLAGS=-DGLIB_DISABLE_DEPRECATION_WARNINGS")
;; ... which they then completly ignore !!
#:phases
(modify-phases %standard-phases