-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
debian/rules is generated by shell, but the escape sequence (\$) is unreadable. debian/rules embeds only two variables (ARCH and KERNELRELEASE). Split them out to debian/rules.vars, and check-in the rest of Makefile code to scripts/package/debian/rules. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Tested-by: Nathan Chancellor <nathan@kernel.org> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
- Loading branch information
Masahiro Yamada
committed
Aug 7, 2023
1 parent
4b970e4
commit d9287ea
Showing
2 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/make -f | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
include debian/rules.vars | ||
|
||
srctree ?= . | ||
|
||
.PHONY: binary binary-indep binary-arch | ||
binary: binary-arch binary-indep | ||
binary-indep: build-indep | ||
binary-arch: build-arch | ||
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \ | ||
KERNELRELEASE=$(KERNELRELEASE) \ | ||
run-command KBUILD_RUN_COMMAND=+$(srctree)/scripts/package/builddeb | ||
|
||
.PHONY: build build-indep build-arch | ||
build: build-arch build-indep | ||
build-indep: | ||
build-arch: | ||
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \ | ||
KERNELRELEASE=$(KERNELRELEASE) \ | ||
$(shell $(srctree)/scripts/package/deb-build-option) \ | ||
olddefconfig all | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -rf debian/files debian/linux-* | ||
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters