From: Mathieu Baudier Date: Fri, 17 Mar 2023 04:31:26 +0000 (+0100) Subject: Fix conditional in Make X-Git-Tag: v2.3.5~79 X-Git-Url: https://git.argeo.org/?a=commitdiff_plain;h=f0be3f409525a91bcd2d7eaf003bcd7621716225;p=cc0%2Fargeo-build.git Fix conditional in Make --- diff --git a/osgi.mk b/osgi.mk index c12a8a5..9c5f53a 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