search for: bafd42328ddb

Displaying 2 results from an estimated 2 matches for "bafd42328ddb".

2018 Jun 27
0
[PATCH] add more PHONY targets to $(PHONY)
...-by: Greg Thelen <gthelen at google.com> --- scripts/Kbuild.install | 10 +++++++--- scripts/Kbuild.klibc | 8 ++++++-- scripts/Makefile.clean | 8 ++++++-- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 8af569777cc3..bafd42328ddb 100644 --- a/scripts/Kbuild.install +++ b/scripts/Kbuild.install @@ -14,7 +14,7 @@ SHLIBDIR = /lib # First rule -.PHONY: __install install-rule +PHONY := __install install-rule __install: # Install commands @@ -64,7 +64,7 @@ else endif # Descending -.PHONY: $(subdir-) +PHONY += $(subdir...
2019 Jan 07
4
[PATCH klibc 0/4] Fix the KLIBCKERNEL{SRC,OBJ} mess
We currently use KLIBCKERNELSRC and KLIBCKERNELOBJ variables which used to be required to point to a kernel source and object directories. However the kernel headers were reorganised starting in Linux 3.7 such that that doesn't work properly. This series removes KLIBCKERNELOBJ and changes the use and documentation of KLIBCKERNELSRC to be consistent. Ben. Ben Hutchings (4): [klibc]