diff options
author | Jeff Trawick <trawick@apache.org> | 2001-07-23 14:40:40 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-07-23 14:40:40 +0200 |
commit | 0f1bd9f39b6a87eb82a9dcb7da0832a542c3d6be (patch) | |
tree | 7f34709e4b1c5628e7db74b0bede517c31197616 /build | |
parent | fix a typo (duplicate return statement) (diff) | |
download | apache2-0f1bd9f39b6a87eb82a9dcb7da0832a542c3d6be.tar.xz apache2-0f1bd9f39b6a87eb82a9dcb7da0832a542c3d6be.zip |
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')
-rw-r--r-- | build/make_exports.awk | 2 |
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 |