summaryrefslogtreecommitdiff
path: root/ext/json/Makefile.frag
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2014-11-30 18:29:48 +0000
committerJakub Zelenka <bukka@php.net>2014-11-30 18:29:48 +0000
commit098097d83f06d088b9f769c514d57b126c700833 (patch)
treef6f00d91ae3a0841adc945f239c2d8d234aa0b6d /ext/json/Makefile.frag
parentf18aae6042797dca2535158ca0a783202a9102a1 (diff)
downloadphp-git-098097d83f06d088b9f769c514d57b126c700833.tar.gz
Fix compilation for json scanner
Diffstat (limited to 'ext/json/Makefile.frag')
-rw-r--r--ext/json/Makefile.frag2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/Makefile.frag b/ext/json/Makefile.frag
index 1632b448fe..cb26acabc7 100644
--- a/ext/json/Makefile.frag
+++ b/ext/json/Makefile.frag
@@ -1,5 +1,5 @@
$(srcdir)/json_scanner.c: $(srcdir)/json_scanner.re
- $(RE2C) -t php_json_scanner_defs.h --no-generation-date -bci -o $@ json_scanner.re
+ $(RE2C) -t $(srcdir)/php_json_scanner_defs.h --no-generation-date -bci -o $@ $(srcdir)/json_scanner.re
$(srcdir)/json_parser.tab.c: $(srcdir)/json_parser.y
$(YACC) --defines -l $(srcdir)/json_parser.y -o $@