mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Tweak r320206: Still create the TABLE but not the .depend entry for missing headers.
X-MFC-With: r320206 MFC after: 3 days Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
87d18efc7b
commit
f944e9e208
1 changed files with 10 additions and 9 deletions
|
|
@ -65,18 +65,19 @@ gen_table()
|
|||
else
|
||||
filter="egrep -v"
|
||||
fi
|
||||
[ -e "${include_dir}/${file}" ] || return 0
|
||||
all_headers="${all_headers:+${all_headers} }${file}"
|
||||
cat <<_EOF_
|
||||
TABLE_START(${name})
|
||||
_EOF_
|
||||
egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
|
||||
$include_dir/$file | ${filter} ${excl} | \
|
||||
awk '{ for (i = 1; i <= NF; i++) \
|
||||
if ($i ~ /define/) \
|
||||
break; \
|
||||
++i; \
|
||||
printf "TABLE_ENTRY(%s)\n", $i }'
|
||||
if [ -e "${include_dir}/${file}" ]; then
|
||||
all_headers="${all_headers:+${all_headers} }${file}"
|
||||
egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
|
||||
$include_dir/$file | ${filter} ${excl} | \
|
||||
awk '{ for (i = 1; i <= NF; i++) \
|
||||
if ($i ~ /define/) \
|
||||
break; \
|
||||
++i; \
|
||||
printf "TABLE_ENTRY(%s)\n", $i }'
|
||||
fi
|
||||
cat <<_EOF_
|
||||
TABLE_END
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue