Skip to content

Commit 0315bb7

Browse files
committed
kbuild: deb-pkg: do not run headers_check
It is absolutely fine to add extra sanity checks in package scripts, but it is not necessary to do so. This is already covered by the daily compile-testing (0day bot etc.) because headers_check is run as a part of the normal build process when CONFIG_HEADERS_CHECK=y. Replace it with the newly-added "make headers". Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
1 parent 555187a commit 0315bb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/package/builddeb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ if is_enabled CONFIG_MODULES; then
130130
fi
131131

132132
if [ "$ARCH" != "um" ]; then
133-
$MAKE -f $srctree/Makefile headers_check
133+
$MAKE -f $srctree/Makefile headers
134134
$MAKE -f $srctree/Makefile headers_install INSTALL_HDR_PATH="$libc_headers_dir/usr"
135135
fi
136136

0 commit comments

Comments
 (0)