diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-21 20:59:36 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-02-04 19:39:09 -0500 |
commit | 44f6310bf93748ca1d55abcb9a2c82a432643256 (patch) | |
tree | a9d522ba89b70df7b31e4457f52945ce78b3bb3c /newlib/libc/stdlib | |
parent | 3365bd2f7a8926457e13699c827a59b0c547bbd2 (diff) | |
download | newlib-44f6310bf93748ca1d55abcb9a2c82a432643256.zip newlib-44f6310bf93748ca1d55abcb9a2c82a432643256.tar.gz newlib-44f6310bf93748ca1d55abcb9a2c82a432643256.tar.bz2 |
newlib: libc: include all chapters all the time in the manual
THe stdio subdir is actually required by the documentation. The
stdio/def is handled dynamically, but libc.texi always expects it
to be included, and fails if it isn't. So making it required when
building docs is safe.
The xdr subdir is handled dynamically, but it doesn't include any
docs, so the dynamic logic isn't (currently) adding any value. So
making it required when building docs is safe.
That leaves: iconv, stdio64, posix, and signal subdirs. The chapters
have a little disclaimer saying they are system-dependent, but even
then, imo having stable manuals regardless of the target is preferable,
and we can add more disclaimer language to these chapters if we want.
This doesn't touch the man page codepaths, just the info/pdf.
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r-- | newlib/libc/stdlib/Makefile.in | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/newlib/libc/stdlib/Makefile.in b/newlib/libc/stdlib/Makefile.in index cd5a671..f6a4f23 100644 --- a/newlib/libc/stdlib/Makefile.in +++ b/newlib/libc/stdlib/Makefile.in @@ -352,18 +352,13 @@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBC_MACHINE_DIR = @LIBC_MACHINE_DIR@ LIBC_MACHINE_LIB = @LIBC_MACHINE_LIB@ -LIBC_POSIX_DEF = @LIBC_POSIX_DEF@ LIBC_POSIX_LIB = @LIBC_POSIX_LIB@ -LIBC_SIGNAL_DEF = @LIBC_SIGNAL_DEF@ LIBC_SIGNAL_LIB = @LIBC_SIGNAL_LIB@ -LIBC_STDIO64_DEF = @LIBC_STDIO64_DEF@ LIBC_STDIO64_LIB = @LIBC_STDIO64_LIB@ -LIBC_STDIO_DEF = @LIBC_STDIO_DEF@ LIBC_STDIO_LIB = @LIBC_STDIO_LIB@ LIBC_SYSCALL_LIB = @LIBC_SYSCALL_LIB@ LIBC_SYS_LIB = @LIBC_SYS_LIB@ LIBC_UNIX_LIB = @LIBC_UNIX_LIB@ -LIBC_XDR_DEF = @LIBC_XDR_DEF@ LIBC_XDR_LIB = @LIBC_XDR_LIB@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ |