diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-04-27 10:19:31 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-04-27 10:19:31 -0500 |
commit | a28bb20e6273fea7d1747b6d32ee12ce7ce32922 (patch) | |
tree | 011a26c11c937a86d44de5be8cb1af799ab39bdd /chapter06 | |
parent | bd5b888ad374c5cf1a3b4a1fd82ee8d34765444f (diff) |
Alternate fix for Ch6 coreutils.
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/coreutils.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 207e05dc5..bbea2f1c4 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -43,15 +43,17 @@ <sect2 role="installation"> <title>Installation of Coreutils</title> +<!-- <screen><userinput remap="configure">export gl_cv_macro_MB_CUR_MAX_good=y</userinput></screen> - +--> <para>Prepare Coreutils for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ --host=$LFS_TGT \ --build=$(build-aux/config.guess) \ --enable-install-program=hostname \ - --enable-no-install-program=kill,uptime</userinput></screen> + --enable-no-install-program=kill,uptime \ + gl_cv_macro_MB_CUR_MAX_good=y</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> |