From 27a37af0e2fc9c3f5f11a381609ab458c057afef Mon Sep 17 00:00:00 2001 From: Sander Striker Date: Wed, 7 Aug 2002 12:35:03 +0000 Subject: [PATCH] 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 --- support/apxs.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1