From eb69fc69f486f5af2ca467591ce276dd0e79a6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Tue, 4 Feb 2025 10:36:26 +0100 Subject: [PATCH] Build: update for new deps::. semantics Now it does not look for a package in the parent directories, but rather auto-scans dependencies. (This might change in the future.) [ci skip] --- tools/build/windows/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/windows/Makefile b/tools/build/windows/Makefile index 20416ce19..b78fb8900 100644 --- a/tools/build/windows/Makefile +++ b/tools/build/windows/Makefile @@ -43,7 +43,7 @@ export PKGFILES := $(patsubst %,lib/%/pak_$(PAKVERSION).zip,$(RVERSIONS)) deploy: @echo "----- DEPLOYING packages -----------------------------------" @echo $(PKGFILES) - R_LIBS=$(RLIB) $(R) -q -e "pak::pkg_install('deps::.', dependencies = 'Config/Needs/deploy')" + R_LIBS=$(RLIB) $(R) -q -e "pak::pkg_install('deps::$(PKGROOT)', dependencies = 'Config/Needs/deploy')" R_LIBS=$(RLIB) $(R) -q -e \ "pak:::push_packages(strsplit(Sys.getenv('PKGFILES'), ' ')[[1]])"