From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 38/50] make.sh: Avoid calling date when determining elapsed seconds Date: Tue, 22 Feb 2022 12:51:23 +0000 Message-ID: <20220222125135.1211290-39-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6751464272691144040==" List-Id: --===============6751464272691144040== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- make.sh | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/make.sh b/make.sh index ed8cd260e..cb11b36ab 100755 --- a/make.sh +++ b/make.sh @@ -295,10 +295,6 @@ stdumount() { umount $BASEDIR/build/tmp 2>/dev/null; } -now() { - date -u "+%s" -} - format_runtime() { local seconds=${1} @@ -741,7 +737,7 @@ ipfiredist() { wait_until_finished() { local pid=${1} - local start_time=$(now) + local start_time="${SECONDS}" # Show progress if ${INTERACTIVE}; then @@ -751,7 +747,7 @@ wait_until_finished() { local runtime while kill -0 ${pid} 2>/dev/null; do - print_runtime $(( $(now) - ${start_time} )) + print_runtime $(( SECONDS - start_time )) # Wait a little sleep 1 @@ -763,7 +759,7 @@ wait_until_finished() { local ret=$? if ! ${INTERACTIVE}; then - print_runtime $(( $(now) - ${start_time} )) + print_runtime $(( SECONDS - start_time )) fi return ${ret} @@ -1831,7 +1827,7 @@ done # See what we're supposed to do case "$1" in build) - START_TIME=$(now) + START_TIME="${SECONDS}" # Clear screen ${INTERACTIVE} && clear @@ -1876,7 +1872,7 @@ build) tools/checkrootfiles cd $PWD - print_build_summary $(( $(now) - ${START_TIME} )) + print_build_summary $(( SECONDS - START_TIME )) ;; shell) # enter a shell inside LFS chroot -- 2.30.2 --===============6751464272691144040==--