From bfa6d17e0024c9ffb6f16979c18a1699dbbb0f3e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 7 Jan 2015 16:00:31 -0400 Subject: [PATCH] remove debug prints; even going to stderr that breaks gnupg's configure script --- standalone/android/wrapper.pl | 2 -- 1 file changed, 2 deletions(-) diff --git a/standalone/android/wrapper.pl b/standalone/android/wrapper.pl index ae484a6cfe..a7136a9509 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"; }