From: Mathieu Baudier Date: Thu, 20 Jul 2023 04:17:10 +0000 (+0200) Subject: Strip spaces from bundles list X-Git-Tag: v2.3.7~2 X-Git-Url: https://git.argeo.org/?a=commitdiff_plain;h=b3c357e87a6be7946d3330348126cb401b44779a;p=cc0%2Fargeo-build.git Strip spaces from bundles list --- 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)