Revert "autotools: don't recreate parser files with lemon after lemon rebuild" (#2238)
This reverts revision 2748 It broke non-gnu make. git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2760 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.27
parent
b0126de9f1
commit
e4a1ba2e32
1
NEWS
1
NEWS
|
@ -23,7 +23,6 @@ NEWS
|
|||
* mod_accesslog: Fix var declarations mixed in source (fixes #2233)
|
||||
* mod_status: Add version to status page (fixes #2219)
|
||||
* mod_accesslog: optimize accesslog_append_escaped (fixes #2236, thx crypt)
|
||||
* autotools: don't recreate parser files with lemon after lemon rebuild
|
||||
* openssl: silence annoying error messages for errno==0 (fixes #2213)
|
||||
* array.c: improve array_get_unused_element to check data type; fix mem leak if unused_element didn't find a matching entry (fixes #2145)
|
||||
* add check to stop loading plugins twice
|
||||
|
|
|
@ -40,12 +40,12 @@ mod_ssi_exprparser.c mod_ssi_exprparser.h:
|
|||
parsers:
|
||||
else
|
||||
configparser.h: configparser.c
|
||||
configparser.c: $(srcdir)/configparser.y $(srcdir)/lempar.c | lemon$(EXEEXT)
|
||||
configparser.c: $(srcdir)/configparser.y $(srcdir)/lempar.c lemon$(EXEEXT)
|
||||
rm -f configparser.h
|
||||
$(LEMON) -q $(srcdir)/configparser.y $(srcdir)/lempar.c
|
||||
|
||||
mod_ssi_exprparser.h: mod_ssi_exprparser.c
|
||||
mod_ssi_exprparser.c: $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c | lemon$(EXEEXT)
|
||||
mod_ssi_exprparser.c: $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c lemon$(EXEEXT)
|
||||
rm -f mod_ssi_exprparser.h
|
||||
$(LEMON) -q $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c
|
||||
|
||||
|
|
Loading…
Reference in New Issue