summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2006-02-12 18:19:21 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2006-02-12 18:19:21 +0000
commit4fd0f2d9d43fd84c2f27e28545708d08ac7d83e0 (patch)
treeac9a2b53606958d90dc4ff7082f04a75b1f5b6b1
parentc1b89988246ab0a10076034a2e2a13fa48d852e6 (diff)
Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pagesXORG-7_0_99_901
not created correctly when MANDIR & MANSUFFIX don't match.
-rw-r--r--ChangeLog6
-rw-r--r--man/Makefile.am4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c9fa9b7..435661c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-12 Alan Coopersmith <alan.coopersmith@sun.com>
+
+ * man/Makefile.am:
+ Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628>
+ Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
+
2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
* configure.ac:
diff --git a/man/Makefile.am b/man/Makefile.am
index 57b68b7..13cdc1c 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -27,6 +27,8 @@
libmandir = $(LIB_MAN_DIR)
+LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%)
+
libman_PRE = Xfontcache.man
BUILT_SOURCES = shadows.DONE
@@ -69,5 +71,5 @@ Xfontcache_shadows = \
shadows.DONE:
-rm -f $(Xfontcache_shadows:=.@LIB_MAN_SUFFIX@)
(for i in $(Xfontcache_shadows:=.@LIB_MAN_SUFFIX@) ; do \
- echo .so man$(LIB_MAN_SUFFIX)/Xfontcache.$(LIB_MAN_SUFFIX) > $$i; \
+ echo .so man$(LIB_MAN_DIR_SUFFIX)/Xfontcache.$(LIB_MAN_SUFFIX) > $$i; \
done)