From 69d02963ecf287591efebce4606878c33119b9c8 Mon Sep 17 00:00:00 2001 From: oddlama Date: Wed, 27 Oct 2021 13:41:38 +0200 Subject: [PATCH] fix: selected locales were not parsed correctly from an existing configuration due to wrong IFS in array expansion (fixes #16) --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 0411a5b..6111bbe 100755 --- a/configure +++ b/configure @@ -304,6 +304,7 @@ function load_selected_locales() { ((++i)) done + local IFS=" " SELECTED_LOCALES="${sel_locales[*]}" }