star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit 954d6438688d20b7ad5de3bf91f9acd083965f8b
parent ad1b01187777e30d19eaafc7398471084d3f55da
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 18 Jul 2024 16:31:35 +0200

Correction to REPO_BIN macro

Its offline value was directly assigned to the REPO_BIN macro instead of
the REPO_BIN_OFFLINE macro.

Diffstat:
Mconfig.mk | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.mk b/config.mk @@ -60,10 +60,10 @@ REPO_VAPLV_ONLINE = https://gitlab.com/vaplv # URLs for offline repositories REPO_OFFLINE = $(MIRROR) -REPO_BIN_OFFLINE = $(MIRROR) +REPO_BIN_OFFLINE = "file://$$(pwd)/$(MIRROR)" REPO_VAPLV_OFFLINE = $(MIRROR) # List of repositories to use depending on the state of the network REPO = $(REPO_$(NETWORK)) -REPO_BIN = "file://$$(pwd)/$(REPO_BIN_$(NETWORK))" +REPO_BIN = $(REPO_BIN_$(NETWORK)) REPO_VAPLV = $(REPO_VAPLV_$(NETWORK))