ca9e309d30
When trying to build shadow in a different directory I stumbled upon few issues, this commit aims to fix all of them: - The `subid.h` file is generated and hence in the build directory and not in the source directory, so use `$(builddir)` instead of `$(srcdir)`. - Using `$<` instead of filenames utilises autotools to locate the files in either the source or build directory automatically. - `xsltproc` needs to access the files in login.defs.d in either the source directory or the symlink in a language subdirectory, but it does not interpret the `--path` as prefix of the entity path, but rather a path under which to locate the basename of the entity from the XML file. So specify the whole path to login.defs.d. - The above point could be used to make the symlinks of login.defs.d and entity path specifications in the XMLs obsolete, but I trying not to propose possibly disrupting patches, so for the sake of simplicity just specify `$(srcdir)` when creating the symlink. Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
if HAVE_VENDORDIR
|
|
VENDORDIR_COND=with_vendordir
|
|
else
|
|
VENDORDIR_COND=without_vendordir
|
|
endif
|
|
if USE_PAM
|
|
PAM_COND=pam
|
|
else
|
|
PAM_COND=no_pam
|
|
endif
|
|
if SHADOWGRP
|
|
SHADOWGRP_COND=gshadow
|
|
else
|
|
SHADOWGRP_COND=no_gshadow
|
|
endif
|
|
if WITH_TCB
|
|
TCB_COND=tcb
|
|
else
|
|
TCB_COND=no_tcb
|
|
endif
|
|
|
|
if USE_SHA_CRYPT
|
|
SHA_CRYPT_COND=sha_crypt
|
|
else
|
|
SHA_CRYPT_COND=no_sha_crypt
|
|
endif
|
|
|
|
if ENABLE_SUBIDS
|
|
SUBIDS_COND=subids
|
|
else
|
|
SUBIDS_COND=no_subids
|
|
endif
|
|
|
|
if ENABLE_REGENERATE_MAN
|
|
%.xml-config: %.xml
|
|
if grep -q SHADOW-CONFIG-HERE $<; then \
|
|
sed -e 's/^<!-- SHADOW-CONFIG-HERE -->/<!ENTITY % config SYSTEM "config.xml">%config;/' $< > $@; \
|
|
else \
|
|
sed -e 's/^\(<!DOCTYPE .*docbookx.dtd"\)>/\1 [<!ENTITY % config SYSTEM "config.xml">%config;]>/' $< > $@; \
|
|
fi
|
|
|
|
man1/% man3/% man5/% man8/%: %.xml-config Makefile config.xml
|
|
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(TCB_COND);$(SHA_CRYPT_COND);$(SUBIDS_COND);$(VENDORDIR_COND)" \
|
|
--param "man.authors.section.enabled" "0" \
|
|
--stringparam "man.output.base.dir" "" \
|
|
--stringparam vendordir "$(VENDORDIR)" \
|
|
--param "man.output.in.separate.dir" "1" \
|
|
--path "$(srcdir)/login.defs.d" \
|
|
-nonet $(top_builddir)/man/shadow-man.xsl $<
|
|
|
|
clean-local:
|
|
rm -rf man1 man3 man5 man8
|
|
|
|
else
|
|
$(man_MANS):
|
|
@echo you need to run configure with --enable-man to generate man pages
|
|
endif
|
|
|
|
man8/grpconv.8 man8/grpunconv.8 man8/pwunconv.8: man8/pwconv.8
|
|
|
|
man3/getspnam.3: man3/shadow.3
|
|
|
|
man8/vigr.8: man8/vipw.8
|