diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-27 01:31:30 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-27 01:31:30 +0000 |
commit | b82e8376a2bb0bbc992814c5730961844c3b4acd (patch) | |
tree | 48c8c30b4d99dac024416e0c5c73451419fee8d7 /chapter05 | |
parent | 7b0620db93a83d382658e1c1dc081a18beeba2ae (diff) |
Added static mawk, texinfo, gettext
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@46 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gettext-static-inst.sgml | 19 | ||||
-rw-r--r-- | chapter05/gettext-static.sgml | 8 | ||||
-rw-r--r-- | chapter05/mawk-static-inst.sgml | 18 | ||||
-rw-r--r-- | chapter05/mawk-static.sgml | 8 | ||||
-rw-r--r-- | chapter05/texinfo-static-inst.sgml | 18 | ||||
-rw-r--r-- | chapter05/texinfo-static.sgml | 8 |
6 files changed, 79 insertions, 0 deletions
diff --git a/chapter05/gettext-static-inst.sgml b/chapter05/gettext-static-inst.sgml new file mode 100644 index 000000000..b6514af37 --- /dev/null +++ b/chapter05/gettext-static-inst.sgml @@ -0,0 +1,19 @@ +<sect2> +<title>Installation of Gettext</title> + +<para> +Install Gettext by running the following commands: +</para> + +<blockquote><literallayout> + + <userinput>./configure --prefix=$LFS/usr + --disable-nls &&</userinput> + <userinput>cd src &&</userinput> + <userinput>make LDFLAGS=-all-static msgfmt &&</userinput> + <userinput>cp msgfmt $LFS/usr/bin</userinput> + +</literallayout></blockquote> + +</sect2> + diff --git a/chapter05/gettext-static.sgml b/chapter05/gettext-static.sgml new file mode 100644 index 000000000..e2ae5065b --- /dev/null +++ b/chapter05/gettext-static.sgml @@ -0,0 +1,8 @@ +<sect1 id="ch05-gettext"> +<title>Installing Gettext</title> + +&c5-pp-gettext-inst; +&aa-gettext-desc; + +</sect1> + diff --git a/chapter05/mawk-static-inst.sgml b/chapter05/mawk-static-inst.sgml new file mode 100644 index 000000000..b6c5413e9 --- /dev/null +++ b/chapter05/mawk-static-inst.sgml @@ -0,0 +1,18 @@ +<sect2> +<title>Installation of Mawk</title> + +<para> +Install Mawk by running the following commands: +</para> + +<blockquote><literallayout> + + <userinput>./configure &&</userinput> + <userinput>make CFLAGS=-static &&</userinput> + <userinput>make BINDIR=$LFS/usr/bin \ + MANDIR=$LFS/usr/share/man/man1 install</userinput> + +</literallayout></blockquote> + +</sect2> + diff --git a/chapter05/mawk-static.sgml b/chapter05/mawk-static.sgml new file mode 100644 index 000000000..ff2ca9235 --- /dev/null +++ b/chapter05/mawk-static.sgml @@ -0,0 +1,8 @@ +<sect1 id="ch05-mawk"> +<title>Installing Mawk</title> + +&c5-pp-mawk-inst; +&aa-mawk-desc; + +</sect1> + diff --git a/chapter05/texinfo-static-inst.sgml b/chapter05/texinfo-static-inst.sgml new file mode 100644 index 000000000..34633361a --- /dev/null +++ b/chapter05/texinfo-static-inst.sgml @@ -0,0 +1,18 @@ +<sect2> +<title>Installation of Texinfo</title> + +<para> +Install Texinfo by running the following commands: +</para> + +<blockquote><literallayout> + + <userinput>./configure --prefix=$LFS/usr + --disable-nls &&</userinput> + <userinput>make LDFLAGS=-static &&</userinput> + <userinput>make install</userinput> + +</literallayout></blockquote> + +</sect2> + diff --git a/chapter05/texinfo-static.sgml b/chapter05/texinfo-static.sgml new file mode 100644 index 000000000..6ebcd4384 --- /dev/null +++ b/chapter05/texinfo-static.sgml @@ -0,0 +1,8 @@ +<sect1 id="ch05-texinfo"> +<title>Installing Texinfo</title> + +&c5-pp-texinfo-inst; +&aa-texinfo-desc; + +</sect1> + |