diff options
Diffstat (limited to 'chapter06/flex.xml')
-rw-r--r-- | chapter06/flex.xml | 9 |
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 > /usr/bin/lex << "EOF"</userinput> #!/bin/sh |