<br><font size=2 face="sans-serif">Hi,</font>
<br>
<br><font size=2 face="sans-serif">In r671, make command is malfunction
as the following output messages:</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; </font>
<br><font size=2 face="sans-serif">$ make</font>
<br><font size=2 face="sans-serif">./configure </font>
<br><font size=2 face="sans-serif">./configure: 177: Syntax error: Bad
substitution</font>
<br><font size=2 face="sans-serif">make: *** [config.mak] Error 2</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; </font>
<br><font size=2 face="sans-serif">It is probably due &nbsp;to the regular
expression need to be fixed in configure (using sh shell default).</font>
<br>
<br><font size=2 face="sans-serif">Possible solution:</font>
<br>
<br><font size=2 face="sans-serif">Index: configure</font>
<br><font size=2 face="sans-serif">===================================================================</font>
<br><font size=2 face="sans-serif">--- configure &nbsp; (revision 671)</font>
<br><font size=2 face="sans-serif">+++ configure &nbsp; (working copy)</font>
<br><font size=2 face="sans-serif">@@ -174,9 +174,9 @@</font>
<br><font size=2 face="sans-serif">&nbsp;host=`./config.sub $host`</font>
<br><font size=2 face="sans-serif">&nbsp;</font>
<br><font size=2 face="sans-serif">&nbsp;# split $host</font>
<br><font size=2 face="sans-serif">-host_cpu=&quot;${host/-*}&quot;</font>
<br><font size=2 face="sans-serif">+host_cpu=&quot;${host%%-*}&quot;</font>
<br><font size=2 face="sans-serif">&nbsp;host=&quot;${host#*-}&quot;</font>
<br><font size=2 face="sans-serif">-host_vendor=&quot;${host/-*}&quot;</font>
<br><font size=2 face="sans-serif">+host_vendor=&quot;${host%%-*}&quot;</font>
<br><font size=2 face="sans-serif">&nbsp;host_os=&quot;${host#*-}&quot;</font>
<br><font size=2 face="sans-serif">&nbsp;</font>
<br><font size=2 face="sans-serif">&nbsp;case $host_os in</font>
<br>
<br>
<br><font size=2 face="sans-serif">BR,</font>
<br><font size=2 face="sans-serif">Jonathan Chen</font>
<br>