update 2024-02-21 13:37:34
This commit is contained in:
parent
4c61600528
commit
aec0aa583d
|
@ -70,6 +70,8 @@ define Build/Prepare
|
||||||
( \
|
( \
|
||||||
$(TAR) --strip-components=1 -C $(PKG_BUILD_DIR)/../ -xzf $(DL_DIR)/$(PKG_NAME)-$(PKG_VERSION).tar.gz ; \
|
$(TAR) --strip-components=1 -C $(PKG_BUILD_DIR)/../ -xzf $(DL_DIR)/$(PKG_NAME)-$(PKG_VERSION).tar.gz ; \
|
||||||
rm -rf $(PKG_BUILD_DIR) && git clone https://github.com/daeuniverse/dae-wing $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/wing ; \
|
rm -rf $(PKG_BUILD_DIR) && git clone https://github.com/daeuniverse/dae-wing $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/wing ; \
|
||||||
|
rm -rf $(PKG_BUILD_DIR)/dae-core && git clone https://github.com/daeuniverse/dae $(PKG_BUILD_DIR)/dae-core ; \
|
||||||
|
rm -rf $(PKG_BUILD_DIR)/dae-core/control/kern/headers && git clone https://github.com/daeuniverse/dae_bpf_headers $(PKG_BUILD_DIR)/dae-core/control/kern/headers ; \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -86,8 +88,6 @@ endif
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
( \
|
( \
|
||||||
pushd $(PKG_BUILD_DIR) ; \
|
pushd $(PKG_BUILD_DIR) ; \
|
||||||
rm -rf dae-core && git clone https://github.com/daeuniverse/dae dae-core ; \
|
|
||||||
rm -rf dae-core/control/kern/headers && git clone https://github.com/daeuniverse/dae_bpf_headers dae-core/control/kern/headers ; \
|
|
||||||
go mod tidy ; \
|
go mod tidy ; \
|
||||||
$(MAKE) deps ; \
|
$(MAKE) deps ; \
|
||||||
$(GO_GENERAL_BUILD_CONFIG_VARS) \
|
$(GO_GENERAL_BUILD_CONFIG_VARS) \
|
||||||
|
@ -95,7 +95,6 @@ define Build/Compile
|
||||||
$(GO_PKG_BUILD_VARS) \
|
$(GO_PKG_BUILD_VARS) \
|
||||||
go generate ./... ; \
|
go generate ./... ; \
|
||||||
cd dae-core ; \
|
cd dae-core ; \
|
||||||
go mod tidy ; \
|
|
||||||
$(GO_GENERAL_BUILD_CONFIG_VARS) \
|
$(GO_GENERAL_BUILD_CONFIG_VARS) \
|
||||||
$(GO_PKG_BUILD_CONFIG_VARS) \
|
$(GO_PKG_BUILD_CONFIG_VARS) \
|
||||||
$(GO_PKG_BUILD_VARS) \
|
$(GO_PKG_BUILD_VARS) \
|
||||||
|
|
Loading…
Reference in New Issue