diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-09-14 22:04:16 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-09-24 14:28:09 +0800 |
commit | b5b5105c3d1dacaf87a3c786270860cf636b0a52 (patch) | |
tree | c9cc775f20b69f2c9474cc71ef4d63e184908183 /gnu/packages/xorg.scm | |
parent | b1a782b11aae2fa2bf8450c228638a0fd5cc9c83 (diff) | |
download | patches-b5b5105c3d1dacaf87a3c786270860cf636b0a52.tar patches-b5b5105c3d1dacaf87a3c786270860cf636b0a52.tar.gz |
gnu: xorg-server: Set default font path to empty.
* gnu/packages/xorg.scm (xorg-server)[arguments]: Pass
"--with-default-font-path=" to #:configure-flags.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 23834ba19e..6a6bb22382 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5132,6 +5132,11 @@ 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" |