mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: inkscape: Fix build on armhf-linux.
* gnu/packages/inkscape.scm (inkscape/stable)[arguments]: Add the custom 'fix-32bit-size_t-format phase when building for armhf-linux. Change-Id: I45f371babd2afc6d6f63d30e5f909b702410833e
This commit is contained in:
parent
fdd2a6c4c0
commit
93d6ce6a71
1 changed files with 2 additions and 1 deletions
|
@ -204,7 +204,8 @@ (define-public inkscape/stable
|
||||||
(("add_pdfinput_test\\(font-(spacing|style) 1 draw-all" all)
|
(("add_pdfinput_test\\(font-(spacing|style) 1 draw-all" all)
|
||||||
(string-append "#" all))))))
|
(string-append "#" all))))))
|
||||||
'())
|
'())
|
||||||
#$@(if (target-x86-32?)
|
#$@(if (or (target-x86-32?)
|
||||||
|
(target-arm32?))
|
||||||
'((add-after 'unpack 'fix-32bit-size_t-format
|
'((add-after 'unpack 'fix-32bit-size_t-format
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Fix an error due to format type mismatch with 32-bit size_t.
|
;; Fix an error due to format type mismatch with 32-bit size_t.
|
||||||
|
|
Loading…
Reference in a new issue