aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/flex.xml
diff options
context:
space:
mode:
authorAlex Gronenwoud <alex@linuxfromscratch.org>2004-02-04 22:22:26 +0000
committerAlex Gronenwoud <alex@linuxfromscratch.org>2004-02-04 22:22:26 +0000
commit4248b0ec1488319d448ad624e275a9a2811c0090 (patch)
treeeb1ba22abb86426add6b7b005fabd115410f0919 /chapter06/flex.xml
parent0aa644e255215d2fd4286af294bc4388872ba268 (diff)
Minor textual tweaks.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3219 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/flex.xml')
-rw-r--r--chapter06/flex.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/chapter06/flex.xml b/chapter06/flex.xml
index 809f1ca31..11683221d 100644
--- a/chapter06/flex.xml
+++ b/chapter06/flex.xml
@@ -34,15 +34,16 @@ following command will do so:</para>
<screen><userinput>make install</userinput></screen>
-<para>There are some packages that expect to find the Lex library in
-<filename>/usr/lib</filename>. Create a symlink to account for this:</para>
+<para>There are some packages that expect to find the <emphasis>lex</emphasis>
+library in <filename>/usr/lib</filename>. Create a symlink to account for
+this:</para>
<screen><userinput>ln -s libfl.a /usr/lib/libl.a</userinput></screen>
<para>A few programs don't know about <command>flex</command> yet and try
to run its predecessor <command>lex</command>. To support those programs,
-create a shell script named <filename>lex</filename> that calls
-<command>flex</command> in Lex emulation mode:</para>
+create a wrapper script named <filename>lex</filename> that calls
+<command>flex</command> in <emphasis>lex</emphasis> emulation mode:</para>
<screen><userinput>cat &gt; /usr/bin/lex &lt;&lt; "EOF"</userinput>
#!/bin/sh