summaryrefslogtreecommitdiff
path: root/build/make_exports.awk
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-07-23 12:40:40 +0000
committerJeff Trawick <trawick@apache.org>2001-07-23 12:40:40 +0000
commit0f1bd9f39b6a87eb82a9dcb7da0832a542c3d6be (patch)
tree7f34709e4b1c5628e7db74b0bede517c31197616 /build/make_exports.awk
parent31dfddfafde358bca8c8024ac361aa8c4f401afc (diff)
downloadhttpd-0f1bd9f39b6a87eb82a9dcb7da0832a542c3d6be.tar.gz
tweak make_exports.awk so it works with nawk on Solaris
Submitted by: Sander Striker git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89653 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/make_exports.awk')
-rw-r--r--build/make_exports.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make_exports.awk b/build/make_exports.awk
index 5115301894..b50768125d 100644
--- a/build/make_exports.awk
+++ b/build/make_exports.awk
@@ -79,7 +79,7 @@ function add_symbol(symbol) {
/^[ \t]*AP[RU]?_DECLARE[^(]*[(][^)]*[)]([^ ]* )*[^(]+[(]/ {
sub("[ \t]*AP[RU]?_DECLARE[^(]*[(][^)]*[)][ \t]*", "")
sub("[(].*", "")
- sub("([^ ]* ^([ \t]*[(]))*", "")
+ sub("([^ ]* (^([ \t]*[(])))+", "")
add_symbol($0)
next