Tweak sorting of files.
--- a/doc/doxygen.warnings.report.sh Wed Dec 04 15:37:57 2013 -0800
+++ b/doc/doxygen.warnings.report.sh Wed Dec 04 15:52:48 2013 -0800
@@ -202,9 +202,7 @@
# Rather than work too hard to get the exact number for each file,
# we just list the total here.
addlparam=$( \
- grep -v "^$ROOT" $LOG | \
- grep -v "not generated, too many nodes" | \
- grep "^ parameter '" | \
+ grep "^ parameter '" "$LOG" | \
wc -l | \
sed 's/^[ \t]*//;s/[ \t]*$//' \
)
@@ -228,7 +226,7 @@
)
# Sorted by number, decreasing
-undocsort=$(echo "$undocfiles" | sort -r )
+undocsort=$(echo "$undocfiles" | sort -k1nr,2 )
# Total number of files
filecount=$( \