build: Set --enable-man during distcheck
If xsltproc is not installed, then ENABLE_MAN will be false and the generated man pages won't be distributed. Pass --enable-man to enforce that the man pages will be generated and distributed. Closes: #486 Approved by: cgwalters
This commit is contained in:
parent
3b55db9661
commit
973ec467ce
|
|
@ -29,7 +29,11 @@ AM_CPPFLAGS += -DDATADIR='"$(datadir)"' -DLIBEXECDIR='"$(libexecdir)"' \
|
|||
-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_40 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_40 \
|
||||
-DSOUP_VERSION_MIN_REQUIRED=SOUP_VERSION_2_40 -DSOUP_VERSION_MAX_ALLOWED=SOUP_VERSION_2_48
|
||||
AM_CFLAGS += -std=gnu99 $(WARN_CFLAGS)
|
||||
AM_DISTCHECK_CONFIGURE_FLAGS += --enable-gtk-doc --disable-maintainer-mode
|
||||
AM_DISTCHECK_CONFIGURE_FLAGS += \
|
||||
--enable-gtk-doc \
|
||||
--enable-man \
|
||||
--disable-maintainer-mode \
|
||||
$(NULL)
|
||||
|
||||
GITIGNOREFILES = aclocal.m4 build-aux/ buildutil/*.m4 config.h.in gtk-doc.make
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue