From: Josef 'Jeff' Sipek Date: Tue, 9 May 2017 09:42:48 +0000 (+0300) Subject: lib-fts: use full path to word-properties script X-Git-Tag: 2.3.0.rc1~1644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58f9b440f44eef4348a9043e3cef477a9733cb10;p=thirdparty%2Fdovecot%2Fcore.git lib-fts: use full path to word-properties script This is a step toward fixing builds where object dir != source dir. --- diff --git a/src/lib-fts/Makefile.am b/src/lib-fts/Makefile.am index 913ff9521d..fcff074853 100644 --- a/src/lib-fts/Makefile.am +++ b/src/lib-fts/Makefile.am @@ -43,13 +43,13 @@ EXTRA_DIST = \ $(srcdir)/WordBreakProperty.txt: test -f $@ || wget -O $@ https://dovecot.org/res/WordBreakProperty.txt -$(srcdir)/word-boundary-data.c: word-properties.pl $(srcdir)/WordBreakProperty.txt - perl word-properties.pl boundaries $(srcdir)/WordBreakProperty.txt > $@ +$(srcdir)/word-boundary-data.c: $(srcdir)/word-properties.pl $(srcdir)/WordBreakProperty.txt + perl $(srcdir)/word-properties.pl boundaries $(srcdir)/WordBreakProperty.txt > $@ $(srcdir)/PropList.txt: test -f $@ || wget -O $@ https://dovecot.org/res/PropList.txt -$(srcdir)/word-break-data.c: word-properties.pl $(srcdir)/PropList.txt - perl word-properties.pl breaks $(srcdir)/PropList.txt > $@ +$(srcdir)/word-break-data.c: $(srcdir)/word-properties.pl $(srcdir)/PropList.txt + perl $(srcdir)/word-properties.pl breaks $(srcdir)/PropList.txt > $@ if BUILD_FTS_STEMMER