From: Sander Striker Date: Wed, 7 Aug 2002 12:35:03 +0000 (+0000) Subject: apxs lost the newline at the end of print "$result", so that apxs -q doesn't X-Git-Tag: 2.0.40~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27a37af0e2fc9c3f5f11a381609ab458c057afef;p=apache apxs lost the newline at the end of print "$result", so that apxs -q doesn't return anything. Submitted by: Thom May git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96317 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/apxs.in b/support/apxs.in index bc9ccec285..91de152ef7 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -358,7 +358,7 @@ if ($opt_q) { ## QUERY INFORMATION ## my $result = get_vars(@args); - print "$result"; + print "$result\n"; } if ($opt_c) {