Fix typo in log.sh that leads to incompatibility with some shells.

This commit is contained in:
snickerbockers 2016-10-05 20:01:03 -07:00
parent 6c3d87025e
commit 1ace36014b

View File

@ -56,7 +56,7 @@ log_module_start() {
# Output to screen and logfile in developer mode (if possible)
if [[ -n "$LIBRETRO_DEVELOPER" && -n "${log_tee:=$(find_tool "tee")}" ]]; then
exec > >($log_tee -a $log_module) 2>&1
exec >> $($log_tee -a $log_module) 2>&1
else
exec >> $log_module 2>&1
log_file_only=1