git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10498 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
251 B
Perl
Executable file
15 lines
251 B
Perl
Executable file
#!/usr/bin/perl
|
|
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
|
|
if $running_under_some_shell;
|
|
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my $command = shift @ARGV;
|
|
|
|
my $output = `$^X $command 2>&1`;
|
|
|
|
die "SWIG Perl test failed: \n\n$output\n"
|
|
if $?;
|
|
|
|
exit(0);
|