A few quotes from `src/Makefile':
LEX = :
LEXLIB =
LEX_OUTPUT_ROOT =
LEXCOMPILE = $(LEX) $(LFLAGS) $(AM_LFLAGS)
YLWRAP = $(top_srcdir)/build-aux/ylwrap
.l.c:
$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ --
$(LEXCOMPILE)
These give:
src$ /bin/bash ../build-aux/ylwrap css.l .c css.c --
../build-aux/ylwrap: line 110: .../wget-hacking1/src/css.l: Permission
denied
src$ /bin/bash ../build-aux/ylwrap css.l .c css.c -- echo
.../src/css.l
src$
Re-ran configure:
$ ./configure > log 2>&1 &
...
$ grep -i lex log
checking for flex... no
checking for lex... no
$ less README.checkout
$ sudo apt-get install flex
$ sudo apt-get install texinfo
$ ./configure > log 2>&1 &
...
$ grep -i lex log
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
$ make
[all ok]
$
--
Evgeniy Philippov