removed some --disable-nls

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@371 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Thomas Balu Walter 2001-03-28 13:33:38 +00:00
parent 64df8d1626
commit 32bbb1c62c
5 changed files with 8 additions and 10 deletions

View File

@ -28,6 +28,11 @@ longer is the only used file system. Reiserfs, for example, is often used
too now.
</para></listitem>
<listitem><para>
Chapter 5: Removed --disable-nls from configuration of programs that don't
need that (bash, diffutils, sed)
</para></listitem>
<listitem><para>
Chapter 5: Added static mawk, texinfo, and partially gettext to faciliate
the move of Glibc from Chapter 5 to Chapter 6.

View File

@ -22,12 +22,6 @@ mounted a user needs and will want to have bash available (it will be hard to
execute the boot scripts without a shell for instance).
</para>
<para>
<userinput>--disable-nls:</userinput> This disables the build of NLS
(National Language Support). It's only a waste of time for now as Bash
will be reinstalled in the next chapter.
</para>
<para>
<userinput>--with-curses:</userinput> This causes Bash to be linked
against the curses library instead of the default termcap library which

View File

@ -8,7 +8,7 @@ Install Bash by running the following commands:
<blockquote><literallayout>
<userinput>./configure --enable-static-link --prefix=$LFS/usr \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;--bindir=$LFS/bin --disable-nls
<userinput>&nbsp;&nbsp;&nbsp;--bindir=$LFS/bin
--with-curses &amp;&amp;</userinput>
<userinput>make &amp;&amp;</userinput>
<userinput>make install &amp;&amp;</userinput>

View File

@ -9,8 +9,7 @@ Install Diffutils by running the following commands:
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
&amp;&amp;</userinput>
<userinput>./configure --prefix=$LFS/usr --disable-nls
&amp;&amp;</userinput>
<userinput>./configure --prefix=$LFS/usr &amp;&amp;</userinput>
<userinput>unset CPPFLAGS &amp;&amp;</userinput>
<userinput>make LDFLAGS=-static &amp;&amp;</userinput>
<userinput>make install</userinput>

View File

@ -10,7 +10,7 @@ Install Sed by running the following commands:
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
&amp;&amp;</userinput>
<userinput>./configure --prefix=$LFS/usr
--disable-nls --bindir=$LFS/bin &amp;&amp;</userinput>
--bindir=$LFS/bin &amp;&amp;</userinput>
<userinput>unset CPPFLAGS &amp;&amp;</userinput>
<userinput>make LDFLAGS=-static &amp;&amp;</userinput>
<userinput>make install</userinput>