From 647b23f56116ec2749a19e34ab312178fb8a7b59 Mon Sep 17 00:00:00 2001 From: David Steele Date: Wed, 26 Jul 2017 19:56:06 +0100 Subject: [PATCH] Updated dali_env script to ensure no build telemetry is sent. By default, dotnet build sends telemetry about the build process to Microsoft. This can be disabled by setting the environment variable DOTNET_CLI_TELEMETRY_OPTOUT=1 Have added this to the dali_env script to ensure that none of the build processes send this telemetry. Change-Id: I3f7252b4eeef16207d04bc1f9fa251fdb1a3d870 Signed-off-by: David Steele --- build/scripts/dali_env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/dali_env b/build/scripts/dali_env index 679be35..2381f4a 100755 --- a/build/scripts/dali_env +++ b/build/scripts/dali_env @@ -193,7 +193,7 @@ export PATH=$install_path/bin:\$PATH export LD_LIBRARY_PATH=$install_path/lib:\$LD_LIBRARY_PATH export INCLUDEDIR=$install_path/include export PKG_CONFIG_PATH=$install_path/lib/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig - +export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DALI_WINDOW_WIDTH=480 export DALI_WINDOW_HEIGHT=800 -- 2.7.4