Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 27ddea3

Browse files
author
Matthias Koeppe
committed
build/bin/sage-logger: Back out an experimental change
1 parent 2779e24 commit 27ddea3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build/bin/sage-logger

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ if [ -n "$SAGE_SILENT_BUILD" -a ${use_prefix} = true ]; then
7474
# Silent build.
7575
# Similar to https://www.gnu.org/software/automake/manual/html_node/Automake-Silent-Rules.html#Automake-Silent-Rules
7676
echo "[$logname] installing. Log file: $logfile"
77-
t=$(time ( exec>> $logfile 2>&1 ; eval "$cmd" ) 2>&1)
77+
( exec>> $logfile 2>&1 ; eval "$cmd" )
7878
status=$?
7979
if [[ $status != 0 ]]; then
8080
echo " [$logname] error installing, exit status $status. End of log file:"
@@ -83,7 +83,6 @@ if [ -n "$SAGE_SILENT_BUILD" -a ${use_prefix} = true ]; then
8383
else
8484
echo " [$logname] successfully installed."
8585
fi
86-
echo " [$logname] build times: $t"
8786
exit $status
8887
else
8988
# Redirect stdout and stderr to a subprocess running tee.

0 commit comments

Comments
 (0)