From 44d8ea067159cd2c59f4cce21884d55c0cd96652 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Tue, 18 Oct 2022 11:19:17 +0200 Subject: [PATCH] Deal with spaces in bundle resources file names --- osgi.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osgi.mk b/osgi.mk index bbd5469..14374ec 100644 --- a/osgi.mk +++ b/osgi.mk @@ -52,7 +52,7 @@ $(BUILD_BASE)/built : $(TODOS) $(A2_OUTPUT)/%.$(major).$(minor).jar : $(BUILD_BASE)/$$(subst $(A2_CATEGORY)/,,$$*)/to-build $(ARGEO_MAKE) all --branch $(BRANCH) --a2-bases $(A2_BASE) --dep-categories $(DEP_CATEGORIES) --category $(A2_CATEGORY) --bundles $(subst $(A2_CATEGORY)/,,$*) -$(BUILD_BASE)/%/to-build : $$(shell find $(SDK_SRC_BASE)/% -type f -not -path 'bin/*' -not -path '*/MANIFEST.MF') +$(BUILD_BASE)/%/to-build : $$(shell find $(SDK_SRC_BASE)/% -type f -not -path 'bin/*' -not -path '*/MANIFEST.MF' | sed 's/ /\\ /g') @rm -rf $(dir $@) @mkdir -p $(dir $@) @touch $@ -- 2.30.2