diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-12-30 03:12:54 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-12-30 03:12:54 +0000 |
commit | 8f93b1553a4af5ba0868a9a3f7b7de2e22485ccb (patch) | |
tree | 8b5e9e8e548c61c464214411090b1d30184d29af /chapter06 | |
parent | 5fb3b1a6de398990dbaa0b3533215bacd7b12f86 (diff) |
o Updated to binutils-2.13.2, procps-3.1.5.
o Made all LDFLAGS=-static LDFLAGS="-static".
o Added symlink from libfl.a to libl.a.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2242 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/automake-inst.xml | 3 | ||||
-rw-r--r-- | chapter06/flex-inst.xml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/chapter06/automake-inst.xml b/chapter06/automake-inst.xml index acca9868a..ec7f8e296 100644 --- a/chapter06/automake-inst.xml +++ b/chapter06/automake-inst.xml @@ -4,7 +4,8 @@ <para>Install Automake by running the following commands:</para> <para><screen><userinput>./configure --prefix=/usr && -make install</userinput></screen></para> +make install && +ln -s automake-1.7 /usr/share/automake</userinput></screen></para> </sect2> diff --git a/chapter06/flex-inst.xml b/chapter06/flex-inst.xml index f2a361d6e..bdd9ff3c2 100644 --- a/chapter06/flex-inst.xml +++ b/chapter06/flex-inst.xml @@ -5,7 +5,8 @@ <para><screen><userinput>./configure --prefix=/usr && make && -make install</userinput></screen></para> +make install && +ln -s libfl.a /usr/lib/libl.a</userinput></screen></para> <para>Some programs don't know about flex and try to find the lex program (flex is a (better) alternative for lex). So to please those few |