diff options
author | David Bryant <davidbryant@gvtc.com> | 2022-11-17 16:14:42 -0600 |
---|---|---|
committer | David Bryant <davidbryant@gvtc.com> | 2022-11-17 16:14:42 -0600 |
commit | 27601131e4ee4d960546e966e7f4326102b23d47 (patch) | |
tree | c69fcfb09cfdba2914465b417fc2a1d6f045e3f7 /chapter08 | |
parent | 091d624df5c599faef288f4d2c447f167003392a (diff) |
Correctd the spelling of "Werror" -- it's "-Werror" in GCC, but
it's "--disable-error" in Glibc. Thanks to Thomas Trepl for spotting
my mistake.
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/glibc.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter08/glibc.xml b/chapter08/glibc.xml index a85559d24..d121084df 100644 --- a/chapter08/glibc.xml +++ b/chapter08/glibc.xml @@ -70,7 +70,7 @@ cd build</userinput></screen> <para>Prepare Glibc for compilation:</para> <screen><userinput remap="configure">../configure --prefix=/usr \ - --disable-werror \ + --disable-Werror \ --enable-kernel=&min-kernel; \ --enable-stack-protector=strong \ --with-headers=/usr/include \ @@ -82,7 +82,7 @@ cd build</userinput></screen> <varlistentry> <term><parameter>--disable-werror</parameter></term> <listitem> - <para>This option disables the -werror option passed to + <para>This option disables the -Werror option passed to GCC. This is necessary for running the test suite.</para> </listitem> </varlistentry> |