Author: sebor
Date: Thu Dec 6 15:46:48 2007
New Revision: 601917
URL: http://svn.apache.org/viewvc?rev=601917&view=rev
Log:
2007-12-06 Martin Sebor <[EMAIL PROTECTED]>
* xbuildgen (get_times): Added a missing semicolon to the end
of a series of sed commands to stop FreeBSD sed from complaining.
Modified:
incubator/stdcxx/trunk/bin/xbuildgen
Modified: incubator/stdcxx/trunk/bin/xbuildgen
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/bin/xbuildgen?rev=601917&r1=601916&r2=601917&view=diff
==============================================================================
--- incubator/stdcxx/trunk/bin/xbuildgen (original)
+++ incubator/stdcxx/trunk/bin/xbuildgen Thu Dec 6 15:46:48 2007
@@ -505,7 +505,7 @@
# "%dm%fs %dm%fs"
# we don't care about the shell times, just the times for its
# children, so we skip that line
- times=`sed -n "/$pattern/{n;p;n;n;p}" $file`
+ times=`sed -n "/$pattern/{n;p;n;n;p;}" $file`
# strip fractional parts of seconds and replace 'm' with ':'
echo $times | sed -e "s/\.[0-9][0-9]*s//g" -e "s/s//" -e "s/m/:/g"