From 1807173271c6ebddf6d9d8deab5321060ad91318 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Fri, 17 Mar 2023 05:28:20 +0100 Subject: [PATCH] Fix Make conditional --- osgi.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osgi.mk b/osgi.mk index 44338e8..c12a8a5 100644 --- a/osgi.mk +++ b/osgi.mk @@ -66,7 +66,7 @@ $(BUILD_BASE)/%/to-build : $$(shell find % -type f -not -path 'bin/*' -not -path # Local manifests %/META-INF/MANIFEST.MF : $(BUILD_BASE)/%/META-INF/MANIFEST.MF -ifneq($(NO_MANIFEST_COPY),"true") +ifneq($(NO_MANIFEST_COPY),true) @mkdir -p $*/META-INF @cp $< $@ endif -- 2.30.2