mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-23 07:49:44 +00:00
Revert "libretro-buildbot-recipe.sh: Remove seemingly unneeded and non-portable bash redirection."
This commit is contained in:
parent
190374a1f6
commit
712393c796
@ -282,7 +282,12 @@ libretro_build_core() {
|
||||
exec 6>&1
|
||||
echo "Building ${1}..." >> $log_module
|
||||
|
||||
exec > $log_module
|
||||
# TODO: Possibly a shell function for tee?
|
||||
if [[ -n "$LIBRETRO_DEVELOPER" && -n "${cmd_tee:=$(find_tool "tee")}" ]]; then
|
||||
exec > >($cmd_tee -a $log_module)
|
||||
else
|
||||
exec > $log_module
|
||||
fi
|
||||
fi
|
||||
|
||||
case "$core_build_rule" in
|
||||
|
Loading…
Reference in New Issue
Block a user