Jelajahi Sumber

removed some --disable-nls

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@371 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Thomas Balu Walter 24 tahun lalu
induk
melakukan
32bbb1c62c

+ 5 - 0
chapter01/changelog.xml

@@ -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.

+ 0 - 6
chapter05/bash-exp.xml

@@ -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 

+ 1 - 1
chapter05/bash-inst.xml

@@ -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>

+ 1 - 2
chapter05/diffutils-inst.xml

@@ -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>

+ 1 - 1
chapter05/sed-inst.xml

@@ -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>