diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-12-26 14:52:43 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-01-05 11:35:38 +0100 |
commit | 5e73758b43c3defba2578df6d3a53e942fa6b41e (patch) | |
tree | 7a7be30ab6c18feca2b4e3350b41a27421ead28b /scripts/package/mkdebian | |
parent | kbuild: deb-pkg: remove unneeded '-f $srctree/Makefile' in debian/rules (diff) | |
download | linux-5e73758b43c3defba2578df6d3a53e942fa6b41e.tar.xz linux-5e73758b43c3defba2578df6d3a53e942fa6b41e.zip |
kbuild: deb-pkg: use more debhelper commands in builddeb
Commit 36862e14e316 ("kbuild: deb-pkg: use dh_listpackages to know
enabled packages") started to require the debhelper tool suite.
Use more dh_* commands in create_package():
- dh_installdocs to install copyright
- dh_installchangelogs to install changelog
- dh_compress to compress changelog
- dh_fixperms to replace the raw chmod command
- dh_gencontrol to replace the raw dpkg-gencontrol command
- dh_md5sums to record the md5sum of included files
- dh_builddeb to replace the raw dpkg-deb command
Set DEB_RULES_REQUIRES_ROOT to 'no' in case debian/rules is executed
directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <n.schier@avm.de>
Diffstat (limited to 'scripts/package/mkdebian')
-rwxr-xr-x | scripts/package/mkdebian | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian index 93a24712b9a1..070149c985fe 100755 --- a/scripts/package/mkdebian +++ b/scripts/package/mkdebian @@ -193,7 +193,7 @@ Section: kernel Priority: optional Maintainer: $maintainer Rules-Requires-Root: no -Build-Depends: debhelper +Build-Depends: debhelper-compat (= 12) Build-Depends-Arch: bc, bison, cpio, flex, kmod, libelf-dev:native, libssl-dev:native, rsync Homepage: https://www.kernel.org/ |