From b3c357e87a6be7946d3330348126cb401b44779a Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Thu, 20 Jul 2023 06:17:10 +0200 Subject: [PATCH] Strip spaces from bundles list --- osgi.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/osgi.mk b/osgi.mk index 38bd93f..cd78739 100644 --- a/osgi.mk +++ b/osgi.mk @@ -50,12 +50,12 @@ TODOS = $(foreach bundle, $(BUNDLES),$(BUILD_BASE)/$(bundle)/to-build) osgi: $(BUILD_BASE)/built $(MANIFESTS) # Actual build (compilation + bundle packaging) -$(BUILD_BASE)/built : BUNDLES_TO_BUILD = $(subst $(abspath $(BUILD_BASE))/,, $(subst to-build,, $?)) +$(BUILD_BASE)/built : BUNDLES_TO_BUILD = $(strip $(subst $(abspath $(BUILD_BASE))/,, $(subst to-build,, $?))) $(BUILD_BASE)/built : $(TODOS) - @echo "\| Compiler : $(ECJ_JAR)" - @echo "\| A2 category : $(A2_CATEGORY)" - @echo "\| Bundles : $(BUNDLES_TO_BUILD)" - @echo "\| Dependencies : $(DEP_CATEGORIES)" + @echo "| A2 category : $(A2_CATEGORY)" + @echo "| Bundles : $(BUNDLES_TO_BUILD)" + @echo "| Dependencies : $(DEP_CATEGORIES)" + @echo "| Compiler : $(file $(ECJ_JAR))" @$(ARGEO_MAKE) \ all --a2-bases $(A2_BASE) --dep-categories $(DEP_CATEGORIES) \ --category $(A2_CATEGORY) --bundles $(BUNDLES_TO_BUILD) -- 2.30.2