summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2009-12-06 14:00:34 +0100
committerJulien Cristau <jcristau@debian.org>2009-12-06 14:00:34 +0100
commitbca4e6fdbe0e4f43c1c57dd9434c42741061407a (patch)
treeeff5e2103e249ff662f3ba9b90bf5b0d52f5fe06
parent584cc13735613f7788e033707ff756937a787bfa (diff)
Fix XKeysymDB path in manpage again
commit 4da097462b0b899e1790fd5a5f5e8ec811623c3d "Bug 21675 xmodmap manpage states the wrong path to XKeysymDB" made it use the right path, but had trailing whitespace in Makefile.am so the manpage ended up with "/usr/share/X11 /XKeysymDB".
-rw-r--r--Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 0185179..15877b6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,7 +53,8 @@ SED = sed
XORGRELSTRING = @PACKAGE_STRING@
XORGMANNAME = X Version 11
-X11_DATADIR=$(datadir)/X11 # Where libX11 installs XKeysymDB
+# Where libX11 installs XKeysymDB
+X11_DATADIR=$(datadir)/X11
MAN_SUBSTS = \
-e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \