diff options
author | Marius Bakke <marius@gnu.org> | 2021-06-05 15:35:42 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-06-13 01:00:47 +0200 |
commit | a6c292a6f123acc86429722619ccb51ca54f844f (patch) | |
tree | cafa380132b6952f947084975e7995515ecd8840 /gnu/packages/commencement.scm | |
parent | 557084a0c9f2e1b91f7e7da68d3f9540c044bffb (diff) | |
download | guix-a6c292a6f123acc86429722619ccb51ca54f844f.tar.gz |
gnu: expat: Install the static library.
* gnu/packages/xml.scm (expat)[outputs]: New field. [arguments]: Remove #:configure-flags. Add #:phases. * gnu/packages/commencement.scm (expat-sans-tests)[outputs]: New field. [arguments]: Add #:phases.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index bc2e82ffab..d44d1dd3ca 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3053,6 +3053,7 @@ memoized as a function of '%current-system'." (package (inherit expat) (inputs (%boot0-inputs)) + (outputs '("out")) (arguments ;; XXX: Linking 'runtestscpp' fails with things like: ;; @@ -3067,6 +3068,7 @@ memoized as a function of '%current-system'." ;; Since we're not passing the right -Wl,-rpath flags, build the ;; static library to avoid RUNPATH validation failure. `(cons "--disable-shared" ,flags)) + ((#:phases phases) '%standard-phases) ((#:tests? _ #f) #f)))))) (define python-boot0 |