mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-05 02:22:21 +03:00
6 lines
179 B
Plaintext
6 lines
179 B
Plaintext
|
#!/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;
|