search for: f147a37

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

Did you mean: 14737
2019 Jan 18
0
[klibc:master] Disable PIE
...we don't generate. Link: https://www.zytor.com/pipermail/klibc/2019-January/004028.html Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- scripts/Kbuild.klibc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc index f147a37..35c375e 100644 --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -67,7 +67,8 @@ include $(srctree)/scripts/Kbuild.include # --------------------------------------------------------------------------- KLIBCREQFLAGS := $(call cc-option, -fno-stack-protector, ) \ -...
2019 Jan 18
0
[klibc:master] add more PHONY targets to $(PHONY)
...ot; $(Q)mkdir -p $(INSTALLROOT)$(bindir) @@ -111,3 +111,7 @@ descend: footer __install: descend @: endif + +# Declare the contents of the PHONY variable as phony. We keep the variable for +# if_changed. +.PHONY: $(PHONY) diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc index f500d53..f147a37 100644 --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -54,7 +54,7 @@ src := $(obj) # Preset target and make sure it is a ':=' variable targets := -.phony: __build +PHONY := __build __build: # Read .config if it exist, otherwise ignore @@ -374,7 +374,7 @@ endif # Descendin...