aboutsummaryrefslogtreecommitdiff
path: root/standalone/android
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-01-07 16:00:31 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-01-07 16:00:31 -0400
commit4847d0039241e28a3b44163c91b64e1c42bf09b0 (patch)
tree1ff92e6808617396e47613cd0baedde73c2c42e4 /standalone/android
parent42642f00ff3eee96ce3661ec3d0886ae0fbfffd8 (diff)
remove debug prints; even going to stderr that breaks gnupg's configure script
Diffstat (limited to 'standalone/android')
-rw-r--r--standalone/android/wrapper.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/standalone/android/wrapper.pl b/standalone/android/wrapper.pl
index ae484a6cf..a7136a950 100644
--- a/standalone/android/wrapper.pl
+++ b/standalone/android/wrapper.pl
@@ -3,10 +3,8 @@ 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";
}