mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
7b472960b1
server build probably broken
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;
|