mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: orbit2: Fix parallel build.
* gnu/packages/gnome.scm (orbit2): Remove trailing #t. [phases]: Add a phase so that orbit-name-server-2 depends on libname-server-2.a. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
79ca578182
commit
9273d83bc3
1 changed files with 10 additions and 2 deletions
|
@ -3636,11 +3636,19 @@ (define-public orbit2
|
||||||
;; ... which they then completly ignore !!
|
;; ... which they then completly ignore !!
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-parallel-build
|
||||||
|
;; Parallel build fails because of a failed dependency,
|
||||||
|
;; https://bugzilla.gnome.org/show_bug.cgi?id=732274
|
||||||
|
(lambda _
|
||||||
|
(substitute* "src/services/name/Makefile.am"
|
||||||
|
(("orbit_name_server_2_DEPENDENCIES = \\$(DEPS) CosNaming.h")
|
||||||
|
"orbit_name_server_2_DEPENDENCIES = \
|
||||||
|
$(DEPS) CosNaming.h libname-server-2.a"))))
|
||||||
(add-before 'configure 'ignore-deprecations
|
(add-before 'configure 'ignore-deprecations
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "linc2/src/Makefile.in"
|
(substitute* "linc2/src/Makefile.in"
|
||||||
(("-DG_DISABLE_DEPRECATED") "-DGLIB_DISABLE_DEPRECATION_WARNINGS"))
|
(("-DG_DISABLE_DEPRECATED")
|
||||||
#t)))))
|
"-DGLIB_DISABLE_DEPRECATION_WARNINGS")))))))
|
||||||
(inputs `(("glib" ,glib)
|
(inputs `(("glib" ,glib)
|
||||||
("libidl" ,libidl)))
|
("libidl" ,libidl)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue