From: Peter Amstutz Date: Thu, 15 Apr 2021 17:23:24 +0000 (-0400) Subject: Remove quotes around TARGETS no issue # X-Git-Tag: 2.2.0~12^2~11 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/f568b58370bfcc6b5c9035f57bd9b85f1f040074 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 --- 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