summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-08-15 07:32:10 -0400
committerGaetan Nadon <memsize@videotron.ca>2010-08-16 11:15:17 -0400
commitd854293a63be4a983e3e8fe8a1110a5ea1ffba2a (patch)
tree29630ba56d1f360040de9c6222452b51fd46c0ba
parent9fe6bfec833a66a3a8ca70b8769eada91a320bf7 (diff)
man: use "shadows" terminology in variable names.
For man pages that are just links to a main man page. This is how they are referred to in all other librairies. Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--man/Makefile.am14
1 files changed, 7 insertions, 7 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index a71b4f3..e9426ab 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -23,7 +23,7 @@
libmandir = $(LIB_MAN_DIR)
-XI2_manpages = \
+XI2_txt = \
XIChangeHierarchy.txt \
XIDefineCursor.txt \
XIGrabButton.txt \
@@ -65,13 +65,13 @@ libman_txt = \
XSetDeviceFocus.txt \
XSetDeviceMode.txt \
XSetDeviceValuators.txt \
- $(XI2_manpages)
+ $(XI2_txt)
libman_xml = $(libman_txt:.txt=.xml)
# manpages that are references to another page. These are produced as a
# side effect of the xmlto rule, so they need to be handled specially.
-XI2_refpages = \
+XI2_shadows = \
XIUndefineCursor.man \
XIUngrabButton.man \
XIGrabKeycode.man \
@@ -87,7 +87,7 @@ XI2_refpages = \
XIGetProperty.man \
XIFreeDeviceInfo.man
-libman_ref = \
+libman_shadows = \
XGetDeviceDontPropagateList.man \
XChangeDeviceControl.man \
XChangeDeviceKeyMapping.man \
@@ -104,10 +104,10 @@ libman_ref = \
XGetDeviceFocus.man \
XChangeDeviceProperty.man \
XDeleteDeviceProperty.man \
- $(XI2_refpages)
+ $(XI2_shadows)
-libman_pre = $(libman_txt:.txt=.man) $(libman_ref)
+libman_pre = $(libman_txt:.txt=.man) $(libman_shadows)
if INSTALL_MANPAGES
libman_DATA = $(libman_pre:.man=.$(LIB_MAN_SUFFIX))
@@ -172,7 +172,7 @@ SUFFIXES += .txt .xml
mv -f $(@:.man=.libmansuffix) $@
# need to force asciidoc/xmlto to run if necessary for side effect pages
-$(libman_ref):
+$(libman_shadows):
@if test ! -f $(@:.man=.libmansuffix); then \
rm -f $<; \
$(MAKE) $(AM_MAKEFLAGS) $< || exit 1; \