1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 07:48:50 -05:00

Allow a normal 'make' to compile without asciidoc installed

If we don't have asciidoc installed or enabled, we should still have a
successful make. However, we want to ensure 'make dist' fails without
asciidoc. This commit should ensure this.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-09-23 21:19:06 -05:00
parent 843d368ef6
commit 012f793978

View File

@ -1,3 +1,8 @@
# We have to do some funny stuff here with the manpages. In order to ensure
# a dist tarball doesn't get put out there without manpages, we keep those
# files listed in EXTRA_DIST no matter what. However, we only add them to
# man_MANS if --enable-asciidoc was used.
ASCIIDOC_MANS = \
pacman.8 \
makepkg.8 \
@ -11,7 +16,11 @@ if USE_DOXYGEN
DOXYGEN_MANS = $(wildcard man3/*.3)
endif
if USE_ASCIIDOC
man_MANS = $(ASCIIDOC_MANS) $(DOXYGEN_MANS)
else
man_MANS = $(DOXYGEN_MANS)
endif
EXTRA_DIST = \
pacman.8.txt \