mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
config/path: VERBOSE_OUT/SILENT_OUT - drop export, need to exec for every parallel process
This commit is contained in:
parent
6fc4c091f7
commit
d46b8f14aa
20
config/path
20
config/path
@ -84,18 +84,16 @@ fi
|
||||
VERSION_SUFFIX=$TARGET_ARCH
|
||||
|
||||
# redirect formatted output
|
||||
if [ -z "${SILENT_OUT}" -a -z "${VERBOSE_OUT}" ]; then
|
||||
export BUILD_INDENT_SIZE=4
|
||||
export SILENT_OUT=3
|
||||
export VERBOSE_OUT=4
|
||||
export BUILD_INDENT_SIZE=4
|
||||
SILENT_OUT=3
|
||||
VERBOSE_OUT=4
|
||||
|
||||
if [ "$VERBOSE" = yes ]; then
|
||||
exec 3>&1
|
||||
exec 4>&1
|
||||
else
|
||||
exec 3>&2
|
||||
exec 4>/dev/null
|
||||
fi
|
||||
if [ "$VERBOSE" = yes ]; then
|
||||
exec 3>&1
|
||||
exec 4>&1
|
||||
else
|
||||
exec 3>&2
|
||||
exec 4>/dev/null
|
||||
fi
|
||||
|
||||
unset LD_LIBRARY_PATH
|
||||
|
Loading…
x
Reference in New Issue
Block a user