Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2011-11-25 20:16:08 +0400
committerKenneth Heafield <github@kheafield.com>2011-11-25 20:16:08 +0400
commit32575042e1a908b0b1a7d197f651bfd38c3fdac2 (patch)
tree10bc130db6d38b510463f93469ce90ebd0609aad /regenerate-makefiles.sh
parent17a16683e7652fd9066d5b3fb15bae2d2d7e7bc5 (diff)
Jam conversion: change regenerate-makefiles.sh to complain
Diffstat (limited to 'regenerate-makefiles.sh')
-rwxr-xr-xregenerate-makefiles.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/regenerate-makefiles.sh b/regenerate-makefiles.sh
index 7c7ba4990..8470e3f1e 100755
--- a/regenerate-makefiles.sh
+++ b/regenerate-makefiles.sh
@@ -1,4 +1,14 @@
#!/bin/bash
+cat <<EOF
+Moses is moving to Boost Jam. To build Moses, run one command:
+./bjam [--with-srilm=/path/to/srilm] [--with-irstlm=/path/to/irstlm] -j4
+
+If that's not working for you, complain to moses-support then run
+./regenerate-makefiles.sh --force to continue using autotools.
+EOF
+if [ z"$1" != z--force ]; then
+ exit 1
+fi
# NOTE:
# Versions 1.9 (or higher) of aclocal and automake are required.