d1dac25379
expansion. Make sure config.xml does not exist when the POT file is created in order to keep the configurations in the POT file * man/generate_translations.mak: make sure config.xml does not exist neither when the translated XML is generated. Add the missing %config; (strip out by xml2po). and make sure config.xml is present when the translated manpage is generated. * man/generate_mans.mak: config.xml is needed for the generation of manpages (already in the .deps for the English manpages, but needed for the translations). * man/Makefile.am: Added missing CREATE_HOME.xml.
31 lines
551 B
Makefile
31 lines
551 B
Makefile
if ENABLE_REGENERATE_MAN
|
|
|
|
if USE_PAM
|
|
PAM_COND=pam
|
|
else
|
|
PAM_COND=no_pam
|
|
endif
|
|
if SHADOWGRP
|
|
SHADOWGRP_COND=gshadow
|
|
else
|
|
SHADOWGRP_COND=no_gshadow
|
|
endif
|
|
|
|
if USE_SHA_CRYPT
|
|
SHA_CRYPT_COND=sha_crypt
|
|
else
|
|
SHA_CRYPT_COND=no_sha_crypt
|
|
endif
|
|
|
|
%: %.xml Makefile config.xml
|
|
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(SHA_CRYPT_COND)" \
|
|
-nonet http://docbook.sourceforge.net/release/xsl/current/manpages/profile-docbook.xsl $<
|
|
|
|
grpconv.8 grpunconv.8 pwunconv.8: pwconv.8
|
|
|
|
getspnam.3: shadow.3
|
|
|
|
vigr.8: vipw.8
|
|
|
|
endif
|