From a9135e61a0caa07d813a08201430b76b684ac308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=C5=81aniewski-Wo=C5=82=C5=82k?= Date: Tue, 27 Oct 2020 13:14:17 +1000 Subject: [PATCH] Correcting bug in check of libicu presence (#695) --- src/Misc/layoutroot/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Misc/layoutroot/config.sh b/src/Misc/layoutroot/config.sh index 2d627a76a1a..684745b4931 100755 --- a/src/Misc/layoutroot/config.sh +++ b/src/Misc/layoutroot/config.sh @@ -50,7 +50,7 @@ then fi libpath=${LD_LIBRARY_PATH:-} - $LDCONFIG_COMMAND -NXv ${libpath//:/} 2>&1 | grep libicu >/dev/null 2>&1 + $LDCONFIG_COMMAND -NXv ${libpath//:/ } 2>&1 | grep libicu >/dev/null 2>&1 if [ $? -ne 0 ]; then echo "Libicu's dependencies is missing for Dotnet Core 3.0" echo "Execute ./bin/installdependencies.sh to install any missing Dotnet Core 3.0 dependencies."