<div dir="ltr"><br><br><div class="gmail_quote">On Wed, Oct 15, 2008 at 2:42 PM, Vincent Snijders <span dir="ltr"><<a href="mailto:vincent.snijders@gmail.com">vincent.snijders@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
John Stoneham schreef:<br><br><div class="Ih2E3d"><br>
</div>I did not notice that, because you change still did contain the sed call:<br>
<div class="Ih2E3d"><br>
# create description file list<br>
DescrFiles=''<br>
for unit in $UnitList; do<br>
   ShortFile=`echo $unit | sed -e 's/\.pp\b//g' -e 's/\.pas\b//g'`<br>
   ShortFile=${ShortFile%.pp}<br>
   ShortFile=${ShortFile%.pas}<br>
   DescrFiles="$DescrFiles --descr=../$XMLSrcDir$ShortFile.xml"<br>
done<br>
</div></blockquote><div><br>The patch in my previous email removes the sed call, so the loop now looks like this:<br>DescrFiles=''<br>for unit in $UnitList; do<br>  ShortFile=${unit%.pp}<br>  ShortFile=${ShortFile%.pas}<br>
  DescrFiles="$DescrFiles --descr=../$XMLSrcDir$ShortFile.xml"<br>done<br> <br></div></div><br>-- <br>_| ( ) |-| |\|<br>
</div>