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

check-install « sigtest-filter « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba4f431e0076b3e4d0cbcb335ee19e0509d52d58 (plain)
1
2
3
4
5
#!/usr/bin/perl -w
use strict;
my $path = shift @ARGV;
die "Can't find SALM installation path: $path\nPlease use:\n\n   make SALMDIR=/path/to/SALM\n\n" unless (-d $path);
exit 0;