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:
authorskyload <skyload@1f5c12ca-751b-0410-a591-d2e778427230>2010-04-28 00:37:29 +0400
committerskyload <skyload@1f5c12ca-751b-0410-a591-d2e778427230>2010-04-28 00:37:29 +0400
commita6d8a24ca3f460602f46bfcec6ab4196d0197ef7 (patch)
tree78d13f96ca5686c5e61f169a0eeb5ff4acc42be1
parentab7957fc4bbb3820b38ea1a7b90b59169208188d (diff)
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/branches/DPR_MOSES@3211 1f5c12ca-751b-0410-a591-d2e778427230
-rw-r--r--scripts/check-dependencies.pl41
1 files changed, 0 insertions, 41 deletions
diff --git a/scripts/check-dependencies.pl b/scripts/check-dependencies.pl
deleted file mode 100644
index 00f31e96a..000000000
--- a/scripts/check-dependencies.pl
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/perl
-
-# $Id: check-dependencies.pl 1331 2007-03-26 20:06:44Z hieuhoang1972 $
-
-my ($home, $target_dir, $release_dir, $bin_dir) = @ARGV;
-
-#print "HOME: $home\nTARGET_DIR: $target_dir\nRELEASE_DIR: $release_dir\n";
-
-if ($target_dir eq '' || -z $target_dir) {
- print <<EOT;
-Please specify a TARGETDIR.
-
- For development releases you probably want the following:
- TARGETDIR=$home/releases make release
-
- For shared environments, you will want to set TARGETDIR to
- some appropriately common directory.
-
-EOT
- exit 1;
-}
-
-if (-e $release_dir) {
- print "Targetdir exists! Not touching it! $release_dir";
- exit 1;
-}
-
-unless (-x "$bin_dir/GIZA++" && -x "$bin_dir/snt2cooc.out" && -x "$bin_dir/mkcls" ) {
- print <<EOT;
-Please specify a BINDIR.
-
- 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;
-}
-
-
-exit 0;
-