Remove an old comment suggesting a manual shell line to use to find files to run the script on. The script's exclude-list and its support for directory names make this irrelevant.
Signed-off-by: Peter Maydell <[email protected]> --- scripts/clean-includes | 9 --------- 1 file changed, 9 deletions(-) diff --git a/scripts/clean-includes b/scripts/clean-includes index 07c0fd44e46..568033ee9c1 100755 --- a/scripts/clean-includes +++ b/scripts/clean-includes @@ -39,15 +39,6 @@ # removed. # Other files (including C++ and ObjectiveC) can't be handled by this script. -# The following one-liner may be handy for finding files to run this on. -# However some caution is required regarding files that might be part -# of the guest agent or standalone tests. - -# for i in $(git ls-tree --name-only HEAD) ; do test -f $i && \ -# grep -E '^# *include' $i | head -1 | grep 'osdep.h' ; test $? != 0 && \ -# echo $i ; done - - GIT=no DUPHEAD=no -- 2.43.0
