https://issues.apache.org/bugzilla/show_bug.cgi?id=48067
Summary: addloadexample.awk of mod_fcgid-2.3.4 fails in Solaris
Product: Apache httpd-2
Version: 2.2.13
Platform: Sun
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: mod_fcgid
AssignedTo: [email protected]
ReportedBy: [email protected]
With mod_fcgid-2.3.4 in Solaris, execution of addloadexample.awk during "make
install" fails with error "awk: syntax error near line 35". Reason: normal
Solaris awk (/usr/bin/awk) does not understand
if ( ! /^[ \t]*$/ ) print "";
Workaround: use nawk (/usr/bin/nawk) or /usr/xpg4/bin/awk
Possible Patch:
if ( $0 !~ /^[ \t]*$/ ) print "";
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]