mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
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:
parent
64df8d1626
commit
32bbb1c62c
@ -28,6 +28,11 @@ longer is the only used file system. Reiserfs, for example, is often used
|
|||||||
too now.
|
too now.
|
||||||
</para></listitem>
|
</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>
|
<listitem><para>
|
||||||
Chapter 5: Added static mawk, texinfo, and partially gettext to faciliate
|
Chapter 5: Added static mawk, texinfo, and partially gettext to faciliate
|
||||||
the move of Glibc from Chapter 5 to Chapter 6.
|
the move of Glibc from Chapter 5 to Chapter 6.
|
||||||
|
@ -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).
|
execute the boot scripts without a shell for instance).
|
||||||
</para>
|
</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>
|
<para>
|
||||||
<userinput>--with-curses:</userinput> This causes Bash to be linked
|
<userinput>--with-curses:</userinput> This causes Bash to be linked
|
||||||
against the curses library instead of the default termcap library which
|
against the curses library instead of the default termcap library which
|
||||||
|
@ -8,7 +8,7 @@ Install Bash by running the following commands:
|
|||||||
<blockquote><literallayout>
|
<blockquote><literallayout>
|
||||||
|
|
||||||
<userinput>./configure --enable-static-link --prefix=$LFS/usr \</userinput>
|
<userinput>./configure --enable-static-link --prefix=$LFS/usr \</userinput>
|
||||||
<userinput> --bindir=$LFS/bin --disable-nls
|
<userinput> --bindir=$LFS/bin
|
||||||
--with-curses &&</userinput>
|
--with-curses &&</userinput>
|
||||||
<userinput>make &&</userinput>
|
<userinput>make &&</userinput>
|
||||||
<userinput>make install &&</userinput>
|
<userinput>make install &&</userinput>
|
||||||
|
@ -9,8 +9,7 @@ Install Diffutils by running the following commands:
|
|||||||
|
|
||||||
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
|
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
|
||||||
&&</userinput>
|
&&</userinput>
|
||||||
<userinput>./configure --prefix=$LFS/usr --disable-nls
|
<userinput>./configure --prefix=$LFS/usr &&</userinput>
|
||||||
&&</userinput>
|
|
||||||
<userinput>unset CPPFLAGS &&</userinput>
|
<userinput>unset CPPFLAGS &&</userinput>
|
||||||
<userinput>make LDFLAGS=-static &&</userinput>
|
<userinput>make LDFLAGS=-static &&</userinput>
|
||||||
<userinput>make install</userinput>
|
<userinput>make install</userinput>
|
||||||
|
@ -10,7 +10,7 @@ Install Sed by running the following commands:
|
|||||||
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
|
<userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2
|
||||||
&&</userinput>
|
&&</userinput>
|
||||||
<userinput>./configure --prefix=$LFS/usr
|
<userinput>./configure --prefix=$LFS/usr
|
||||||
--disable-nls --bindir=$LFS/bin &&</userinput>
|
--bindir=$LFS/bin &&</userinput>
|
||||||
<userinput>unset CPPFLAGS &&</userinput>
|
<userinput>unset CPPFLAGS &&</userinput>
|
||||||
<userinput>make LDFLAGS=-static &&</userinput>
|
<userinput>make LDFLAGS=-static &&</userinput>
|
||||||
<userinput>make install</userinput>
|
<userinput>make install</userinput>
|
||||||
|
Loading…
Reference in New Issue
Block a user