From 21ba4e3570c1c2524b0733d492ced9634b259353 Mon Sep 17 00:00:00 2001 From: Greg Schafer Date: Thu, 9 Oct 2003 23:22:07 +0000 Subject: Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of with (and of course the matching closing tags). git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/flex-inst.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'chapter06/flex-inst.xml') diff --git a/chapter06/flex-inst.xml b/chapter06/flex-inst.xml index 22d6fca62..2681eb7ce 100644 --- a/chapter06/flex-inst.xml +++ b/chapter06/flex-inst.xml @@ -5,33 +5,33 @@ Prepare Flex for compilation: -./configure --prefix=/usr +./configure --prefix=/usr Compile the package: -make +make This package has a test suite available which can perform a number of checks to ensure it built correctly. Should you choose to run it, the following command will do so: -make bigcheck +make bigcheck And install the package: -make install +make install There are some packages that expect to find the Lex library in /usr/lib. Create a symlink to account for this: -ln -s libfl.a /usr/lib/libl.a +ln -s libfl.a /usr/lib/libl.a A few programs don't know about flex yet and try to run its predecessor lex. To support those programs, create a shell script named lex that calls flex in Lex emulation mode: -cat > /usr/bin/lex << "EOF" +cat > /usr/bin/lex << "EOF" #!/bin/sh # Begin /usr/bin/lex @@ -39,7 +39,7 @@ exec /usr/bin/flex -l "$@" # End /usr/bin/lex EOF -chmod 755 /usr/bin/lex +chmod 755 /usr/bin/lex -- cgit v1.2.3-54-g00ecf