diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-01-26 20:15:49 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-01-27 14:17:17 -0800 |
commit | 19d03d4f49e08442f58cf02240e3e6bab04633d2 (patch) | |
tree | 7d99bfec76faf909d9efe114049c7975b33d70bb /doc | |
parent | 7962c8f78964d460c76f76dda2795b971a8c2a94 (diff) |
doc: finish the removal of SecurityPolicy file man pages
The variable was unassigned but all the code was left in.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index d3911c9bf..bee64b625 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,35 +1,24 @@ -appmandir = $(APP_MAN_DIR) -filemandir = $(FILE_MAN_DIR) # Xserver.man covers options generic to all X servers built in this tree # (i.e. those handled in the os/utils.c options processing instead of in # the DDX-level options processing) +appmandir = $(APP_MAN_DIR) appman_PRE = Xserver.man.pre -fileman_PRE = appman_PROCESSED = $(appman_PRE:man.pre=man) -fileman_PROCESSED = $(fileman_PRE:man.pre=man) - appman_DATA = $(appman_PRE:man.pre=@APP_MAN_SUFFIX@) -fileman_DATA = $(fileman_PRE:man.pre=@FILE_MAN_SUFFIX@) - -BUILT_SOURCES = $(appman_PROCESSED) $(fileman_PROCESSED) -CLEANFILES = $(appman_PROCESSED) $(appman_DATA) \ - $(fileman_PROCESSED) $(fileman_DATA) +BUILT_SOURCES = $(appman_PROCESSED) +CLEANFILES = $(appman_PROCESSED) $(appman_DATA) include $(top_srcdir)/cpprules.in .man.$(APP_MAN_SUFFIX): cp $< $@ -.man.$(FILE_MAN_SUFFIX): - cp $< $@ - EXTRAMANDEFS = -D__default_font_path__="`echo $(COMPILEDDEFAULTFONTPATH) | sed -e 's/,/, /g'`" # Docs about X server internals that we ship with source but don't install DEVEL_DOCS = smartsched - EXTRA_DIST = $(DEVEL_DOCS) $(appman_PRE) $(fileman_PRE) |