From owner-svn-doc-all@freebsd.org Sat Oct 7 09:07:54 2017 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34465E330B2; Sat, 7 Oct 2017 09:07:54 +0000 (UTC) (envelope-from wosch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1129266EF1; Sat, 7 Oct 2017 09:07:54 +0000 (UTC) (envelope-from wosch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9797rMF075155; Sat, 7 Oct 2017 09:07:53 GMT (envelope-from wosch@FreeBSD.org) Received: (from wosch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9797rpM075154; Sat, 7 Oct 2017 09:07:53 GMT (envelope-from wosch@FreeBSD.org) Message-Id: <201710070907.v9797rpM075154@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wosch set sender to wosch@FreeBSD.org using -f From: Wolfram Schneider Date: Sat, 7 Oct 2017 09:07:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51075 - head/share/tools X-SVN-Group: doc-head X-SVN-Commit-Author: wosch X-SVN-Commit-Paths: head/share/tools X-SVN-Commit-Revision: 51075 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2017 09:07:54 -0000 Author: wosch Date: Sat Oct 7 09:07:53 2017 New Revision: 51075 URL: https://svnweb.freebsd.org/changeset/doc/51075 Log: spaces Modified: head/share/tools/webupdate-regression Modified: head/share/tools/webupdate-regression ============================================================================== --- head/share/tools/webupdate-regression Sat Oct 7 09:07:28 2017 (r51074) +++ head/share/tools/webupdate-regression Sat Oct 7 09:07:53 2017 (r51075) @@ -56,7 +56,7 @@ log () { buildstop="$(date +%s)" build_sec=$(($buildstop - $buildstart)) - echo " ($build_sec sec)" + echo "($build_sec sec)" } # global build start @@ -99,7 +99,7 @@ build_doc () { logfile=$1 buildstart - echo -n "build doc (4-40min) $(pwd)/$logfile" + echo -n "build doc (4-40min) $(pwd)/$logfile " time make $make_opt p-all >> $logfile 2>&1; log $logfile } @@ -110,9 +110,10 @@ build_htdocs_web () buildstart ( cd en_US.ISO8859-1/htdocs - echo -n "build htdocs web (1min) $(pwd)/$logfile" + echo -n "build htdocs web (1min) $(pwd)/$logfile " WEB_ONLY=YES time make $make_opt >> $logfile 2>&1; log $logfile - echo -n "build htdocs web/ports (1min)" + buildstart + echo -n "build htdocs web/ports (1min) $(pwd)/$logfile " WEB_ONLY=YES time make -C./ports $make_opt >> $logfile 2>&1; log $logfile ) } @@ -125,7 +126,7 @@ build_htdocs () buildstart ( cd en_US.ISO8859-1/htdocs - echo -n "build htdocs (1-3min) $(pwd)/$logfile" + echo -n "build htdocs (1-3min) $(pwd)/$logfile " time make $make_opt all >> $logfile 2>&1; log $logfile ) } @@ -137,7 +138,7 @@ install_htdocs () buildstart ( cd en_US.ISO8859-1/htdocs - echo -n "install htdocs web (<10 sec) $(pwd)/$logfile" + echo -n "install htdocs web (<10 sec) $(pwd)/$logfile " DESTDIR=$dir/www WEB_ONLY=YES time make $make_opt install >> $logfile 2>&1; log $logfile #egrep -rl wosch $dir/www >/dev/null ) @@ -153,7 +154,7 @@ install_doc () make_opt= cd en_US.ISO8859-1/htdocs - echo -n "install htdocs (<30 sec) $(pwd)/$logfile" + echo -n "install htdocs (<30 sec) $(pwd)/$logfile " DESTDIR=$dir/www time make $make_opt install >> $logfile 2>&1; log $logfile ) } @@ -164,7 +165,7 @@ clean_doc () { logfile=$1 buildstart - echo -n "clean doc (<5 sec) $(pwd)/$logfile" + echo -n "clean doc (<5 sec) $(pwd)/$logfile " time make $make_opt p-clean >> $logfile 2>&1; log $logfile } @@ -176,7 +177,7 @@ clean_htdocs () buildstart ( cd en_US.ISO8859-1/htdocs - echo -n "clean htdocs web + doc (<20 sec) $(pwd)/$logfile" + echo -n "clean htdocs web + doc (<20 sec) $(pwd)/$logfile " time make $make_opt clean >> $logfile 2>&1; log $logfile ) } @@ -268,7 +269,7 @@ fi # full run time buildstart=$buildstart_script -log +echo "total run time: $(log)" exit 0