test_fortify.sh uses a temporary file that might appear as untracked file in some rare sitations. Rename it to match one of top-level's gitignore patterns.
Reported-by: WangYuli <[email protected]> Closes: https://lore.kernel.org/linux-kbuild/[email protected]/ Reviewed-by: Nathan Chancellor <[email protected]> Reviewed-by: WangYuli <[email protected]> Signed-off-by: Nicolas Schier <[email protected]> --- lib/test_fortify/test_fortify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/test_fortify/test_fortify.sh b/lib/test_fortify/test_fortify.sh index c2688ab8281d025ad80168b783d293950c4e726c..368d07d9acbf737be376756b39def87f12f4e9bf 100644 --- a/lib/test_fortify/test_fortify.sh +++ b/lib/test_fortify/test_fortify.sh @@ -17,7 +17,7 @@ WANT="__${FILE%%-*}" # Argument 2: Where to write the build log. OUT="$1" shift -TMP="${OUT}.tmp" +TMP="${OUT%/*}/.${OUT##*/}.tmp" # Argument 3: Path to "nm" tool. NM="$1" -- 2.47.3
