Displaying 2 results from an estimated 2 matches for "8af569777cc3".
2017 Jan 05
0
[PATCH] Fix make install target
...kernel source,
not the usr/ part of the Linux kernel sources. This fixes make install.
Signed-off-by: Luis R. Rodriguez <mcgrof at kernel.org>
---
scripts/Kbuild.install | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index 8af569777cc3..a719e5571edf 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -95,7 +95,7 @@ header:
$(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include
$(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib
$(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin
- $(Q)$(MAKE) -C $(KLI...
2018 Jun 27
0
[PATCH] add more PHONY targets to $(PHONY)
...NY
Signed-off-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-)
+PHO...