From f568b58370bfcc6b5c9035f57bd9b85f1f040074 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Thu, 15 Apr 2021 13:23:24 -0400 Subject: [PATCH] Remove quotes around TARGETS no issue # The quotes get included in the variable substitution, but when we iterate over it using 'for' we actually want it split on spaces. Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6cf9c29d..1e923710 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ VERSION?=$(shell ./version-at-commit.sh HEAD) # changes in the package. (i.e. example config files externally added ITERATION?=1 -TARGETS?="centos7 debian8 debian10 ubuntu1404 ubuntu1604 ubuntu1804 ubuntu2004" +TARGETS?=centos7 debian8 debian10 ubuntu1404 ubuntu1604 ubuntu1804 ubuntu2004 ARVADOS_DIRECTORY?=unset -- 2.30.2