guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Disable RUNPATH validation for packages that use $ORIGIN.


From: Ludovic Courtès
Subject: 01/04: gnu: Disable RUNPATH validation for packages that use $ORIGIN.
Date: Tue, 14 Apr 2015 08:04:03 +0000

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

commit fb799cb72e9a984929047fdd180c863413bb4991
Author: Ludovic Courtès <address@hidden>
Date:   Tue Apr 14 09:55:35 2015 +0200

    gnu: Disable RUNPATH validation for packages that use $ORIGIN.
    
    * gnu/packages/haskell.scm (ghc)[arguments]: Add #:validate-runpath?.
    * gnu/packages/julia.scm (julia)[arguments]: Likewise.
    * gnu/packages/java.scm (icedtea6)[arguments]: Likewise.
---
 gnu/packages/haskell.scm |    5 +++++
 gnu/packages/java.scm    |    5 +++++
 gnu/packages/julia.scm   |    6 ++++++
 3 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 82c7109..3bb5e30 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -111,6 +111,11 @@
        ;; We get a smaller number of test failures by disabling parallel test
        ;; execution.
        #:parallel-tests? #f
+
+       ;; The DSOs use $ORIGIN to refer to each other, but (guix build
+       ;; gremlin) doesn't support it yet, so skip this phase.
+       #:validate-runpath? #f
+
        #:modules ((guix build gnu-build-system)
                   (guix build utils)
                   (guix build rpath)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index d502818..db730cd 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -160,6 +160,11 @@ build process and its dependencies, whereas Make uses 
Makefile format.")
        ;;   made no attempts to make a list of failing JDK tests.  At least
        ;;   222 tests are failing of which at least 132 are AWT tests.
        #:tests? #f
+
+       ;; The DSOs use $ORIGIN to refer to each other, but (guix build
+       ;; gremlin) doesn't support it yet, so skip this phase.
+       #:validate-runpath? #f
+
        #:configure-flags
        (let* ((gcjdir (assoc-ref %build-inputs "gcj"))
               (ecj    (string-append gcjdir "/share/java/ecj.jar"))
diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm
index 036e485..e599044 100644
--- a/gnu/packages/julia.scm
+++ b/gnu/packages/julia.scm
@@ -56,6 +56,12 @@
        #:modules ((ice-9 match)
                   (guix build gnu-build-system)
                   (guix build utils))
+
+
+       ;; The DSOs use $ORIGIN to refer to each other, but (guix build
+       ;; gremlin) doesn't support it yet, so skip this phase.
+       #:validate-runpath? #f
+
        #:phases
        (alist-cons-after
         'unpack 'hardcode-soname-map



reply via email to

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