From 7962c8f78964d460c76f76dda2795b971a8c2a94 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 26 Jan 2010 20:02:13 -0500 Subject: [PATCH] man: add missing __datadir__ for Xserver XWin man pages The man pages display __datadir__/fonts/X11/... because __datadir__ is missing in cpprules.in. Problem was introduced in commit: b54bc14ce0ae38c4863794bc3096ca86cdb23908 when replacing __projectroot__ in the previous font path. Reviewed-by: Alan Coopersmith Signed-off-by: Gaetan Nadon Signed-off-by: Keith Packard --- cpprules.in | 1 + 1 file changed, 1 insertion(+) diff --git a/cpprules.in b/cpprules.in index 7219e361f..2e0856bee 100644 --- a/cpprules.in +++ b/cpprules.in @@ -36,6 +36,7 @@ MANDEFS = \ -D__adminmansuffix__=$(ADMIN_MAN_SUFFIX) \ -D__mandir__=$(mandir) \ -D__projectroot__=$(prefix) \ + -D__datadir__=$(datadir) \ -D__xconfigfile__=$(__XCONFIGFILE__) \ -D__xconfigdir__=$(__XCONFIGDIR__) \ -D__xkbdir__=$(XKB_BASE_DIRECTORY) \