summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2010-08-11 21:10:11 +0000
committerStefan Bühler <stbuehler@web.de>2010-08-11 21:10:11 +0000
commite4a1ba2e324433c10fb0c2252ce9914032ee32e5 (patch)
tree0944d0e88b282d103aa5162c2d38457d472a64bf
parentb0126de9f145bb3569c8e5f5be44c08a005d1a6c (diff)
downloadlighttpd-git-e4a1ba2e324433c10fb0c2252ce9914032ee32e5.tar.gz
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-c4023f1b3aa9
-rw-r--r--NEWS1
-rw-r--r--src/Makefile.am4
2 files changed, 2 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index a15163f1..6df6e037 100644
--- a/NEWS
+++ b/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
diff --git a/src/Makefile.am b/src/Makefile.am
index 69f2b2ca..e675dc0b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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