From 8da83b96e0dd2b916c3691850c0be1f8cc87152b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrijan=20M=C3=B6cker?= <36304504+ctandi@users.noreply.github.com> Date: Sun, 16 Feb 2025 10:47:13 +0100 Subject: [PATCH] Fix GNU_INSTALL_ROOT Path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a11984..c4d3e6d 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ TOOLCHAIN_DIR := $(shell dirname $(GNU_INSTALL_ROOT_NO_SLASH)) $(1): $$(MAKE) -C $$(DIR_$(1))/armgcc \ - GNU_INSTALL_ROOT=$$(if $$(findstring nrf51,$$(DIR_$(1))),$$(GNU_INSTALL_ROOT)/,$$(GNU_INSTALL_ROOT)/bin/) \ + GNU_INSTALL_ROOT=$$(if $$(findstring nrf51,$$(DIR_$(1))),$$(GNU_INSTALL_ROOT),$$(GNU_INSTALL_ROOT)/bin/) \ MAX_KEYS=$(MAX_KEYS) \ HAS_DEBUG=$(HAS_DEBUG) \ HAS_BATTERY=$(HAS_BATTERY) \