summaryrefslogtreecommitdiff
path: root/standalone/android/wrapper.pl
blob: ae484a6cfe5a106baec26c8856b9c574b3ea38ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
my $prog=q{PROG}; # replaced
my @opts=qw{OPTS}; # replaced

if (grep { $_ eq "-r" || $_ eq "--relocatable" } @ARGV) {
	print "running $prog withthout extra opts, as relocatable build detected\n";
	exec($prog,@ARGV) || die "failed to run $prog";
}
else {
	print "running $prog with extra opts @opts\n";
	exec($prog,@opts,@ARGV) || die "failed to run $prog";
}