[PATCH] fix overquoting of $(XKBCONFIGROOT)

Matt Turner mattst88 at gmail.com
Wed Mar 23 20:29:00 PDT 2011


Fixes: http://bugs.gentoo.org/show_bug.cgi?id=360227

Problem is easily seen during compile:
	-DDFLT_XKB_CONFIG_ROOT='""/usr/share/X11/xkb""'
---
 src/xkbcomp/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/xkbcomp/Makefile.am b/src/xkbcomp/Makefile.am
index db54c55..84e5381 100644
--- a/src/xkbcomp/Makefile.am
+++ b/src/xkbcomp/Makefile.am
@@ -1,6 +1,6 @@
 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
 AM_CFLAGS = $(X11_CFLAGS) $(CWARNFLAGS) \
-	-DDFLT_XKB_CONFIG_ROOT='"$(XKBCONFIGROOT)"'
+	-DDFLT_XKB_CONFIG_ROOT='$(XKBCONFIGROOT)'
 
 noinst_LTLIBRARIES = libxkbcomp.la
 libxkbcomp_la_SOURCES = \
-- 
1.7.3.4



More information about the xorg-devel mailing list