From 3b42e81ac3e38f18a84808935e4c69463463e5b0 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 12 Dec 2020 00:08:37 +0000 Subject: [PATCH] Makefile: Fix $(wildcard ) use to actually work Signed-off-by: Ian Jackson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b5506633..1f38cb91 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ DEPLOYED_BRANCH=deployed #---------- nailing-cargo ---------- -ifneq (,$(wildcard(../Cargo.nail))) +ifneq (,$(wildcard ../Cargo.nail)) NAILING_CARGO = nailing-cargo CARGO = $(NAILING_CARGO) -- 2.30.2