From 27601131e4ee4d960546e966e7f4326102b23d47 Mon Sep 17 00:00:00 2001 From: David Bryant Date: Thu, 17 Nov 2022 16:14:42 -0600 Subject: 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. --- chapter08/glibc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chapter08') 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 Prepare Glibc for compilation: ../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 --disable-werror - This option disables the -werror option passed to + This option disables the -Werror option passed to GCC. This is necessary for running the test suite. -- cgit v1.2.3-54-g00ecf