diff options
author | Sandra Loosemore <sloosemore@baylibre.com> | 2025-02-11 22:13:49 +0000 |
---|---|---|
committer | Sandra Loosemore <sloosemore@baylibre.com> | 2025-02-12 01:46:18 +0000 |
commit | 805329e09cede41209f6c3502fa2c17aefffe91b (patch) | |
tree | b09d6c73aac9816e02d2bc1b72a1f1eb05f195c6 | |
parent | b9857b78a4afb7ccdb8ff3858b48d25b1df5ceb3 (diff) | |
download | gcc-805329e09cede41209f6c3502fa2c17aefffe91b.zip gcc-805329e09cede41209f6c3502fa2c17aefffe91b.tar.gz gcc-805329e09cede41209f6c3502fa2c17aefffe91b.tar.bz2 |
Doc: Fix Texinfo warning in install.texi
For some time I've been seeing this Texinfo warning in my builds:
.../gcc/doc/install.texi:2295: warning: `.' or `,' must follow @xref, not f
Fixed thusly.
gcc/ChangeLog
* doc/install.texi: Add missing comma after @xref to fix warning.
-rw-r--r-- | gcc/doc/install.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index d6cf318b..bd7a380 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -2292,7 +2292,7 @@ canadian cross build. The @option{--disable-nls} option disables NLS@. Note that this functionality requires either libintl (provided by GNU gettext) or C standard library that contains support for gettext (such as the GNU C Library). -@xref{with-included-gettext,,--with-included-gettext} for more +@xref{with-included-gettext,,--with-included-gettext}, for more information on the conditions required to get gettext support. @item --with-libintl-prefix=@var{dir} |