changeset 18644:e991baeb8bb7

lib-fts: .sh scripts weren't executable - changed them to be run via bash directly. Better to avoid relying on the executable bit.
author Timo Sirainen <tss@iki.fi>
date Tue, 12 May 2015 12:30:40 +0300
parents 2cfb80f7785e
children 0cbb125046a5
files src/lib-fts/Makefile.am
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-fts/Makefile.am	Tue May 12 12:20:56 2015 +0300
+++ b/src/lib-fts/Makefile.am	Tue May 12 12:30:40 2015 +0300
@@ -30,12 +30,12 @@
 WordBreakProperty.txt:
 	test -f WordBreakProperty.txt || wget http://www.unicode.org/Public/UNIDATA/auxiliary/WordBreakProperty.txt
 $(srcdir)/word-boundary-data.c: word-boundary-data.sh WordBreakProperty.txt
-	$(srcdir)/word-boundary-data.sh < WordBreakProperty.txt > $@.tmp && mv $@.tmp $@
+	bash $(srcdir)/word-boundary-data.sh < WordBreakProperty.txt > $@.tmp && mv $@.tmp $@
 
 PropList.txt:
 	test -f PropList.txt || wget http://www.unicode.org/Public/UNIDATA/PropList.txt
 $(srcdir)/word-break-data.c: word-break-data.sh PropList.txt
-	$(srcdir)/word-break-data.sh < PropList.txt > $@.tmp && mv $@.tmp $@
+	bash $(srcdir)/word-break-data.sh < PropList.txt > $@.tmp && mv $@.tmp $@
 
 
 if BUILD_FTS_STEMMER