gnu: orbit2: Do not build static libraries.
* gnu/packages/gnome.scm (orbit2)[arguments]: Add "--disable-static" to #:configure-flags.
This commit is contained in:
parent
bc0d24292d
commit
8aad2e32e5
|
@ -1321,9 +1321,13 @@ functionality was designed to be as reusable and portable as possible.")
|
|||
(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
|
||||
|
|
Loading…
Reference in New Issue