From e9334ce97bb7f1de87fb211bb5a8168033629b14 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 12 Nov 2012 14:57:02 -0800 Subject: [PATCH] Break build when ragel is needed and missing --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 9f7c7f848..372c10f29 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -242,7 +242,7 @@ arabic-table: gen-arabic-table.py ArabicShaping.txt UnicodeData.txt .PHONY: unicode-tables arabic-table indic-table EXTRA_DIST += hb-ot-shape-complex-indic-machine.rl -hb-ot-shape-complex-indic-machine.hh: hb-ot-shape-complex-indic-machine.rl +$(srcdir)/hb-ot-shape-complex-indic-machine.hh: hb-ot-shape-complex-indic-machine.rl $(AM_V_GEN)$(top_srcdir)/missing --run ragel -e -F1 -o "$@.tmp" "$<" && \ mv "$@.tmp" "$@" || ( $(RM) "$@.tmp" && false )