aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorThomas Balu Walter <tw@itreff.de>2001-03-28 13:33:38 +0000
committerThomas Balu Walter <tw@itreff.de>2001-03-28 13:33:38 +0000
commit32bbb1c62c60e9eb763da8f0499b3815fb21a249 (patch)
tree848b5c16cfda78fee969d998462a9ef12a3d370e /chapter05
parent64df8d1626281ac6c8981999064c6f6b7cf48743 (diff)
removed some --disable-nls
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@371 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/bash-exp.xml6
-rw-r--r--chapter05/bash-inst.xml2
-rw-r--r--chapter05/diffutils-inst.xml3
-rw-r--r--chapter05/sed-inst.xml2
4 files changed, 3 insertions, 10 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml
index 367d139da..90638668d 100644
--- a/chapter05/bash-exp.xml
+++ b/chapter05/bash-exp.xml
@@ -23,12 +23,6 @@ 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
is becoming obsolete.
diff --git a/chapter05/bash-inst.xml b/chapter05/bash-inst.xml
index 207b57389..5e422c57f 100644
--- a/chapter05/bash-inst.xml
+++ b/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>
diff --git a/chapter05/diffutils-inst.xml b/chapter05/diffutils-inst.xml
index 60874c3f9..e3e6a6a95 100644
--- a/chapter05/diffutils-inst.xml
+++ b/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>
diff --git a/chapter05/sed-inst.xml b/chapter05/sed-inst.xml
index 701fbcf1b..09894fbfb 100644
--- a/chapter05/sed-inst.xml
+++ b/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>