Explicitly track "script.subr" which wasn't showing up in the graph because

it's not used by anything within bsdconfig nor any modules (rather, the
script.subr include is designed to be used externally -- nonetheless we
want to track it in the modular graph outputs showing includes).
This commit is contained in:
dteske 2013-05-07 04:47:56 +00:00
parent dd7d8328e3
commit 10fa20ef4f

View File

@ -298,6 +298,12 @@ if [ "$SHOW_INCLUDES" ]; then
done
fi
#
# Add script.subr to includes if it exists
#
[ -f $BSDCFG_SHARE/script.subr ] &&
include_file_list="$include_file_list script.subr"
#
# Start the directional-graph (digraph) output
#