diff options
author | Sander Striker <striker@apache.org> | 2002-08-07 14:35:03 +0200 |
---|---|---|
committer | Sander Striker <striker@apache.org> | 2002-08-07 14:35:03 +0200 |
commit | 27a37af0e2fc9c3f5f11a381609ab458c057afef (patch) | |
tree | 87183ca658b5df39ba3e842407fa205fa660c4cc /support | |
parent | Pardon je, it seems the most obvious solutions are always the easiest (diff) | |
download | apache2-27a37af0e2fc9c3f5f11a381609ab458c057afef.tar.xz apache2-27a37af0e2fc9c3f5f11a381609ab458c057afef.zip |
apxs lost the newline at the end of print "$result", so that apxs -q doesn't
return anything.
Submitted by: Thom May <thom@planetarytramp.net>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96317 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r-- | support/apxs.in | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |