Merge tag 'sysctl-fixes-5.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / scripts / tags.sh
index 16d475b3e203089eeb2100365fb8249f2dd090dd..01fab3d4f90b5f04b62238ebcb72c358e1f55105 100755 (executable)
@@ -95,10 +95,13 @@ all_sources()
 
 all_compiled_sources()
 {
-       realpath -es $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) \
-               include/generated/autoconf.h $(find $ignore -name "*.cmd" -exec \
-               grep -Poh '(?(?=^source_.* \K).*|(?=^  \K\S).*(?= \\))' {} \+ |
-               awk '!a[$0]++') | sort -u
+       {
+               echo include/generated/autoconf.h
+               find $ignore -name "*.cmd" -exec \
+                       grep -Poh '(?(?=^source_.* \K).*|(?=^  \K\S).*(?= \\))' {} \+ |
+               awk '!a[$0]++'
+       } | xargs realpath -es $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) |
+       sort -u
 }
 
 all_target_sources()