From 93d6ce6a71e3dca50f305ac5aa94f84a3cf9f135 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 25 Sep 2024 09:52:03 +0300 Subject: [PATCH] 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 --- gnu/packages/inkscape.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm index 524277fc2b9..13e1652f87e 100644 --- a/gnu/packages/inkscape.scm +++ b/gnu/packages/inkscape.scm @@ -204,7 +204,8 @@ endif()~%~%" (("add_pdfinput_test\\(font-(spacing|style) 1 draw-all" all) (string-append "#" all)))))) '()) - #$@(if (target-x86-32?) + #$@(if (or (target-x86-32?) + (target-arm32?)) '((add-after 'unpack 'fix-32bit-size_t-format (lambda _ ;; Fix an error due to format type mismatch with 32-bit size_t.