use variable for /home/build everywhere
This commit is contained in:
parent
ddf6568244
commit
2027f56e1a
9
Makefile
9
Makefile
|
@ -1,6 +1,9 @@
|
||||||
lc = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$1))))))))))))))))))))))))))
|
lc = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$1))))))))))))))))))))))))))
|
||||||
altarch = $(subst x86_64,amd64,$(subst aarch64,arm64,$1))
|
altarch = $(subst x86_64,amd64,$(subst aarch64,arm64,$1))
|
||||||
|
|
||||||
|
TOOLCHAIN_VOLUME := $(PWD):/home/build
|
||||||
|
TOOLCHAIN_WORKDIR := /home/build
|
||||||
|
|
||||||
DEFAULT_GOAL := $(or $(DEFAULT_GOAL),toolchain)
|
DEFAULT_GOAL := $(or $(DEFAULT_GOAL),toolchain)
|
||||||
ARCH := $(or $(ARCH),x86_64)
|
ARCH := $(or $(ARCH),x86_64)
|
||||||
TARGET := $(or $(TARGET),$(ARCH))
|
TARGET := $(or $(TARGET),$(ARCH))
|
||||||
|
@ -80,8 +83,8 @@ toolchain-update:
|
||||||
--volume $(PWD)/$(CONFIG_DIR):/config \
|
--volume $(PWD)/$(CONFIG_DIR):/config \
|
||||||
--volume $(PWD)/$(SRC_DIR)/toolchain/scripts:/usr/local/bin \
|
--volume $(PWD)/$(SRC_DIR)/toolchain/scripts:/usr/local/bin \
|
||||||
--cpus $(CPUS) \
|
--cpus $(CPUS) \
|
||||||
--volume $(PWD):/home/build \
|
--volume $(TOOLCHAIN_VOLUME) \
|
||||||
--workdir /home/build \
|
--workdir $(TOOLCHAIN_WORKDIR) \
|
||||||
debian@sha256:$(DEBIAN_HASH) \
|
debian@sha256:$(DEBIAN_HASH) \
|
||||||
/usr/local/bin/packages-update
|
/usr/local/bin/packages-update
|
||||||
|
|
||||||
|
@ -214,8 +217,6 @@ define fetch_pgp_key
|
||||||
')
|
')
|
||||||
endef
|
endef
|
||||||
|
|
||||||
TOOLCHAIN_VOLUME := $(PWD):/home/build
|
|
||||||
TOOLCHAIN_WORKDIR := /home/build
|
|
||||||
define toolchain
|
define toolchain
|
||||||
docker run \
|
docker run \
|
||||||
--rm \
|
--rm \
|
||||||
|
|
Loading…
Reference in New Issue