mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
Deal with newline at the end of the module list.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84319 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -3,7 +3,14 @@ BEGIN {
|
|||||||
modules[n++] = "core"
|
modules[n++] = "core"
|
||||||
pmodules[pn++] = "core"
|
pmodules[pn++] = "core"
|
||||||
}
|
}
|
||||||
{ modules[n++] = $1 ; pmodules[pn++] = $1 }
|
{
|
||||||
|
modules[n] = $1;
|
||||||
|
pmodules[pn] = $1;
|
||||||
|
gsub("\n","",modules[n]);
|
||||||
|
gsub("\n","",pmodules[pn]);
|
||||||
|
++n;
|
||||||
|
++pn;
|
||||||
|
}
|
||||||
END {
|
END {
|
||||||
print "/*"
|
print "/*"
|
||||||
print " * modules.c --- automatically generated by Apache"
|
print " * modules.c --- automatically generated by Apache"
|
||||||
|
Reference in New Issue
Block a user