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
1 changed files with 7 additions and 3 deletions
|
@ -1321,9 +1321,13 @@ functionality was designed to be as reusable and portable as possible.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
'(;; 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
|
;; The programmer kindly gives us a hook to turn off deprecation
|
||||||
;; warnings ...
|
;; warnings ...
|
||||||
'("DISABLE_DEPRECATED_CFLAGS=-DGLIB_DISABLE_DEPRECATION_WARNINGS")
|
"DISABLE_DEPRECATED_CFLAGS=-DGLIB_DISABLE_DEPRECATION_WARNINGS")
|
||||||
;; ... which they then completly ignore !!
|
;; ... which they then completly ignore !!
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Reference in a new issue