search for: 7567f6f

Displaying 2 results from an estimated 2 matches for "7567f6f".

Did you mean: 7567,6
2019 Jan 19
0
[klibc:master] Delete makerpm.sh, maketar.sh
...But apparently no-one needs them, so delete them. Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- Makefile | 2 +- makerpm.sh | 9 --------- maketar.sh | 20 -------------------- 3 files changed, 1 insertion(+), 30 deletions(-) diff --git a/Makefile b/Makefile index 09f531e..7567f6f 100644 --- a/Makefile +++ b/Makefile @@ -182,4 +182,4 @@ install: all # This does all the prep work needed to turn a freshly exported git repository # into a release tarball tree release: klibc.spec - rm -f maketar.sh .config + rm -f .config diff --git a/makerpm.sh b/makerpm.sh deleted file mode...
2019 Jan 25
0
[klibc:master] Makefile: Honour KBUILD_SRC variable
...thing work properly in an out-of-tree build. It should only be necessary to specify KBUILD_SRC. Initialise srctree accordingly. 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 7567f6f..a60161c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ SRCROOT = . # To see a list of typical targets execute "make help" # kbuild compatibility -export srctree := $(shell pwd) +export srctree := $(or $(KBUILD_SRC),$(shell pwd)) export objtree := $(shell pwd) export KLIBCS...