mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
759085d2e9
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1438 1f5c12ca-751b-0410-a591-d2e778427230
6 lines
179 B
Perl
Executable File
6 lines
179 B
Perl
Executable File
#!/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;
|