From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH] gnu: xorg-server: Set default font path to empty. Date: Wed, 14 Sep 2016 22:04:16 +0800 Message-ID: <20160914140416.5944-1-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkAne-0003OE-Lt for guix-devel@gnu.org; Wed, 14 Sep 2016 10:04:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkAnY-0004WS-Ul for guix-devel@gnu.org; Wed, 14 Sep 2016 10:04:29 -0400 Received: from smtp27.openmailbox.org ([62.4.1.61]:34935 helo=smtp12.openmailbox.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkAnY-0004W2-OE for guix-devel@gnu.org; Wed, 14 Sep 2016 10:04:24 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= * 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