* gnu/packages/xorg.scm (xorg-server)[arguments]: Pass "--with-default-font-path=" to #:configure-flags. --- gnu/packages/xorg.scm | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 0d3cdce..fb80e85 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5128,6 +5128,10 @@ over Xlib, including: (string-append "--with-xkb-bin-directory=" (assoc-ref %build-inputs "xkbcomp") "/bin") + ;; By default, it ends up with invalid '${prefix}/...', causes: + ;; _FontTransOpen: Unable to Parse address ${prefix}/share/... + ;; It's not used anyway, so set it to empty. + "--with-default-font-path=" ;; For the log file, etc. "--localstatedir=/var") -- 2.8.4