Add support for conditionally including paragraphs. (e.g. to support the
documentation of PAM and !PAM features). I hate docbook!
This commit is contained in:
parent
a34110320f
commit
f171d63b5b
@ -1,3 +1,9 @@
|
||||
2007-11-22 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* man/Makefile.am: Add support for conditionally including
|
||||
paragraphs. (e.g. to support the documentation of PAM and !PAM
|
||||
features).
|
||||
|
||||
2007-11-21 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* man/newusers.8.xml: Added /etc/gshadow, /etc/group, /etc/shadow,
|
||||
|
@ -114,8 +114,16 @@ EXTRA_DIST = \
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
|
||||
if USE_PAM
|
||||
PAM_COND=pam
|
||||
else
|
||||
PAM_COND=no_pam
|
||||
endif
|
||||
TUTU_COND=tutu
|
||||
|
||||
%: %.xml
|
||||
$(XSLTPROC) -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
||||
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(TUTU_COND)" \
|
||||
-nonet http://docbook.sourceforge.net/release/xsl/current/manpages/profile-docbook.xsl $<
|
||||
|
||||
grpconv.8 grpunconv.8 pwunconv.8: pwconv.8
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user