diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-02 12:09:00 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-05-08 11:58:19 -0400 |
commit | 2faf902da5109e31ad08d84a24f827f0e6f60dc4 (patch) | |
tree | e7d56281a994207431279523aa3b7ce57f407a15 /gas/doc/Makefile.am | |
parent | 0d0878d72e0271da43fd248a39ce11dc9fb7e568 (diff) | |
download | gdb-2faf902da5109e31ad08d84a24f827f0e6f60dc4.zip gdb-2faf902da5109e31ad08d84a24f827f0e6f60dc4.tar.gz gdb-2faf902da5109e31ad08d84a24f827f0e6f60dc4.tar.bz2 |
generate single html manual page by default
This better matches other GNU projects like autoconf/automake where
the html manual is the single page form. We'll support the multi-page
form in a follow up change.
Diffstat (limited to 'gas/doc/Makefile.am')
-rw-r--r-- | gas/doc/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am index 4d25e56..34ff5d5 100644 --- a/gas/doc/Makefile.am +++ b/gas/doc/Makefile.am @@ -36,7 +36,8 @@ info_TEXINFOS = as.texi as_TEXINFOS = asconfig.texi $(CPU_DOCS) AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \ - -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc + -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \ + --no-split TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \ -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc |