Author: dteske Date: Tue May 7 04:47:56 2013 New Revision: 250322 URL: http://svnweb.freebsd.org/changeset/base/250322
Log: 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). Modified: head/usr.sbin/bsdconfig/dot/dot Modified: head/usr.sbin/bsdconfig/dot/dot ============================================================================== --- head/usr.sbin/bsdconfig/dot/dot Tue May 7 04:46:08 2013 (r250321) +++ head/usr.sbin/bsdconfig/dot/dot Tue May 7 04:47:56 2013 (r250322) @@ -299,6 +299,12 @@ if [ "$SHOW_INCLUDES" ]; then 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 # printf 'strict digraph "" { // Empty name to prevent SVG Auto-Tooltip\n' _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"