From e4aee795c0767f6f6cd738020b81a204d5ed2cd3 Mon Sep 17 00:00:00 2001 From: Alexey Marchuk Date: Mon, 11 Nov 2019 16:00:09 +0300 Subject: [PATCH] configure/ISA-L: Move log file to submodule directory Running configure script by multiple users on the same machine leads to access to the same ISA-L log file which is created with read access for user's group. As the result only the user who created this file can modify it and other users will receive "permission denied" error. Move this log file to the local ISA-L directory to prevent access by multiple users Signed-off-by: Alexey Marchuk Signed-off-by: Sasha Kotchubievsky Signed-off-by: Evgeniy Kochetov Change-Id: I1862738bc0ba242c98816a22dc39bd11ef5d02dd Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/473855 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto Reviewed-by: Ben Walker --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index fd5dd7598..48837ca1a 100755 --- a/configure +++ b/configure @@ -580,7 +580,7 @@ if [[ "${CONFIG[ISAL]}" = "y" ]]; then CONFIG[REDUCE]=n else cd $rootdir/isa-l - ISAL_LOG=/tmp/spdk-isal.log + ISAL_LOG=$rootdir/isa-l/spdk-isal.log echo -n "Configuring ISA-L (logfile: $ISAL_LOG)..." ./autogen.sh &> $ISAL_LOG ./configure CFLAGS="-fPIC -g -O2" --enable-shared=no >> $ISAL_LOG 2>&1