guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: orbit2: Do not build static libraries.


From: guix-commits
Subject: 01/02: gnu: orbit2: Do not build static libraries.
Date: Tue, 27 Nov 2018 08:02:09 -0500 (EST)

civodul pushed a commit to branch core-updates
in repository guix.

commit 8aad2e32e5d954bc72aa8ef4da9c22f1619b64cd
Author: Ludovic Courtès <address@hidden>
Date:   Tue Nov 27 13:51:52 2018 +0100

    gnu: orbit2: Do not build static libraries.
    
    * gnu/packages/gnome.scm (orbit2)[arguments]: Add "--disable-static" to
     #:configure-flags.
---
 gnu/packages/gnome.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 026b5fd..bf63c37 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]