mosesdecoder/contrib/sigtest-filter/check-install
Barry Haddow 7b472960b1 Move projects from top level to contrib
server build probably broken
2011-11-23 14:48:50 +00:00

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;