summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-08-24 07:52:27 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2013-08-24 07:55:47 -0700
commit1d91bfdf1c8c3e02d8a4eff4fa423673235dd406 (patch)
treec687798e2ed95607283fce0f38df7cc8fd045cb9
parentdb40c3f869cbee0d02ad5aff4519c72c9476e141 (diff)
downloadbison-1d91bfdf1c8c3e02d8a4eff4fa423673235dd406.tar.gz
build: port to pre-5.8.7 perl
* examples/local.mk (extract): Omit -f from perl options. This doesn't work with perl versions before 5.8.7 that are configured without USE_SITECUSTOMIZE. Reported by Michael Felt in <http://lists.gnu.org/archive/html/bug-bison/2013-08/msg00006.html>.
-rw-r--r--examples/local.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/local.mk b/examples/local.mk
index 05e28e1b..c79c8004 100644
--- a/examples/local.mk
+++ b/examples/local.mk
@@ -25,7 +25,7 @@ AM_CXXFLAGS = \
doc = $(top_srcdir)/doc/bison.texi
extexi = $(top_srcdir)/examples/extexi
-extract = VERSION="$(VERSION)" $(PERL) -f $(extexi) $(doc) --
+extract = VERSION="$(VERSION)" $(PERL) $(extexi) $(doc) --
extracted =
CLEANFILES += $(extracted) examples/extracted.stamp
examples/extracted.stamp: $(doc) $(extexi)