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:
authorbojar <bojar@1f5c12ca-751b-0410-a591-d2e778427230>2006-10-06 20:51:31 +0400
committerbojar <bojar@1f5c12ca-751b-0410-a591-d2e778427230>2006-10-06 20:51:31 +0400
commit33e7d3a8c44f70bd6180d07fe577a2cfaf488f7e (patch)
tree638d7f8ebe2090f88c1e028566affe7316398d79 /scripts
parenta73c412b8882a8421b52f483381b8b25c641e7b4 (diff)
fixed a typo in Makefile and check-dependencies checks for mkcls
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@868 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile2
-rwxr-xr-xscripts/check-dependencies.pl7
2 files changed, 5 insertions, 4 deletions
diff --git a/scripts/Makefile b/scripts/Makefile
index 1173f620e..ebeeeb881 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -24,7 +24,7 @@ all: compile
compile:
cd training/cmert-0.5/ && make clean && make
## Compiled mert
- cd training/phrase-extract/ && make clean && nake
+ cd training/phrase-extract/ && make clean && make
## Compiled phrase_extract
cd training/symal/ && make clean && make
## Compiled symal
diff --git a/scripts/check-dependencies.pl b/scripts/check-dependencies.pl
index 4e9a21995..fcb7da3da 100755
--- a/scripts/check-dependencies.pl
+++ b/scripts/check-dependencies.pl
@@ -23,12 +23,13 @@ if (-e $release_dir) {
exit 1;
}
-unless (-x "$bin_dir/GIZA++" && -x "$bin_dir/snt2cooc.out") {
+unless (-x "$bin_dir/GIZA++" && -x "$bin_dir/snt2cooc.out" && -x "$bin_dir/mkcls" ) {
print <<EOT;
Please specify a BINDIR.
- This directory must contain GIZA++ and snt2cooc.out, which
- are available from http://www.fjoch.com/GIZA++.html .
+ The BINDIR directory must contain GIZA++, snt2cooc.out and mkcls executables.
+ These are available from http://www.fjoch.com/GIZA++.html and
+ http://www-i6.informatik.rwth-aachen.de/Colleagues/och/software/mkcls.html .
EOT
exit 1;
}