search for: cd15149

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

Did you mean: 15149
2019 Jan 18
0
[klibc:master] Never clean files in quilt status directory
...an rules for a similar reason, so do the same for .pc. Link: https://www.zytor.com/pipermail/klibc/2018-July/003999.html Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dc10fc5..cd15149 100644 --- a/Makefile +++ b/Makefile @@ -158,7 +158,7 @@ FORCE: ; ### # clean: remove generated files # mrproper does a full cleaning including .config and linux symlink -FIND_IGNORE := \( -name .git \) -prune -o +FIND_IGNORE := \( -name .git -o -name .pc \) -prune -o quiet_cmd_rmfiles = $(if $...
2019 Jan 18
0
[klibc:master] Makefile: Add dependencies on $(KLIBCKERNELSRC)
...ds on it. Make the klcc and klibc targets depend on it. Link: https://www.zytor.com/pipermail/klibc/2019-January/004030.html Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cd15149..4386135 100644 --- a/Makefile +++ b/Makefile @@ -112,10 +112,10 @@ klibc.spec: klibc.spec.in $(KLIBCSRC)/version sed -e 's/@@VERSION@@/$(VERSION)/g' < $< > $@ # Build klcc - it is the first target -klcc: $(objtree)/.config +klcc: $(objtree)/.config $(KLIBCKERNELSRC) $(Q)$(M...