Remove unnecessary AM_MAKEINFOFLAGS tweak
We no longer need to ensure that texi2any (a.k.a. makeinfo) is called with -I $(srcdir) in order to make the @verbatiminclude default-ignore-list in the manual work, because texi2any includes the current working directory by default anyway. Presumably this behaviour was introduced after this AM_MAKEINFOFLAGS was previously added, because it was needed at some point in the past.
This commit is contained in:
parent
8cd6cadd3d
commit
1a20a3f7ee
2 changed files with 1 additions and 13 deletions
11
Makefile.am
11
Makefile.am
|
@ -33,17 +33,6 @@ pm_DATA = lib/Stow.pm
|
||||||
pmstow_DATA = lib/Stow/Util.pm
|
pmstow_DATA = lib/Stow/Util.pm
|
||||||
|
|
||||||
export TEXI2DVI_BUILD_MODE = clean
|
export TEXI2DVI_BUILD_MODE = clean
|
||||||
AM_MAKEINFOFLAGS = -I $(srcdir)
|
|
||||||
|
|
||||||
# We require this -I parameter to ensure that the include of the
|
|
||||||
# default ignore list in the manual works. Unfortunately this is
|
|
||||||
# the only way to do it:
|
|
||||||
#
|
|
||||||
# https://lists.gnu.org/archive/html/bug-automake/2008-09/msg00040.html
|
|
||||||
#
|
|
||||||
# even though it annoyingly produces a warning with the -Wall option
|
|
||||||
# to AM_INIT_AUTOMAKE which has to be silenced via -Wno-override.
|
|
||||||
TEXI2DVI = texi2dvi $(AM_MAKEINFOFLAGS)
|
|
||||||
|
|
||||||
doc_deps = $(info_TEXINFOS) doc/version.texi
|
doc_deps = $(info_TEXINFOS) doc/version.texi
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,7 @@ AC_INIT([stow], [2.3.2], [bug-stow@gnu.org])
|
||||||
AC_PREREQ([2.61])
|
AC_PREREQ([2.61])
|
||||||
AC_CONFIG_AUX_DIR([automake])
|
AC_CONFIG_AUX_DIR([automake])
|
||||||
# Unfortunately we have to disable warnings for overrides, because we
|
# Unfortunately we have to disable warnings for overrides, because we
|
||||||
# need to override the built-in `check' rule and also the TEXI2DVI
|
# need to override the built-in `check' rule.
|
||||||
# variable.
|
|
||||||
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-override dist-bzip2 foreign])
|
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-override dist-bzip2 foreign])
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue