13 lines
538 B
Sed
13 lines
538 B
Sed
|
# comment out lines that are moved by the build
|
||
|
# process, so line numbers provided by m4 are preserved.
|
||
|
|
||
|
# lines in require blocks are not moved
|
||
|
/require \{/,/} # end require/b nextline
|
||
|
|
||
|
/^[[:blank:]]*(attribute|type) / s/^/# this line was moved by the build process: &/
|
||
|
/^[[:blank:]]*(port|node|netif|genfs)con /s/^/# this line was moved by the build process: &/
|
||
|
/^[[:blank:]]*fs_use_(xattr|task|trans) /s/^/# this line was moved by the build process: &/
|
||
|
/^[[:blank:]]*sid /s/^/# this line was moved by the build process: &/
|
||
|
|
||
|
:nextline
|