diff options
author | Bastian Germann <bage@linutronix.de> | 2021-05-26 01:01:37 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-01-26 12:43:33 +0900 |
commit | c9f9cf2560e40b62015c6c4a04be60f55ce5240e (patch) | |
tree | f8f5a807dd3bafdc5af598c775b9a6b3fd2fa933 /scripts/package | |
parent | a5e40d86317774ebc94307da395817902ef78252 (diff) | |
download | linux-c9f9cf2560e40b62015c6c4a04be60f55ce5240e.tar.gz linux-c9f9cf2560e40b62015c6c4a04be60f55ce5240e.tar.bz2 linux-c9f9cf2560e40b62015c6c4a04be60f55ce5240e.zip |
builddeb: clean generated package content
For each binary Debian package, a directory with the package name is
created in the debian directory. Correct the generated file matches in the
package's clean target, which were renamed without adjusting the target.
Fixes: 1694e94e4f46 ("builddeb: match temporary directory name to the package name")
Signed-off-by: Bastian Germann <bage@linutronix.de>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/package')
-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 6cf383225b8b..c3bbef7a6754 100755 --- a/scripts/package/mkdebian +++ b/scripts/package/mkdebian @@ -236,7 +236,7 @@ binary-arch: build-arch KBUILD_BUILD_VERSION=${revision} -f \$(srctree)/Makefile intdeb-pkg clean: - rm -rf debian/*tmp debian/files + rm -rf debian/files debian/linux-* \$(MAKE) clean binary: binary-arch |