[Lazarus] v0.9.27 keeps inserting references to LCL for non-LCL projects

Graeme Geldenhuys graemeg.lists at gmail.com
Thu Oct 16 08:51:02 CEST 2008


On Wed, Oct 15, 2008 at 2:42 PM, Vincent Snijders <
vincent.snijders at gmail.com> wrote:

> John Stoneham schreef:
>
>
> I did not notice that, because you change still did contain the sed call:
>
> # create description file list
> DescrFiles=''
> for unit in $UnitList; do
>   ShortFile=`echo $unit | sed -e 's/\.pp\b//g' -e 's/\.pas\b//g'`
>   ShortFile=${ShortFile%.pp}
>   ShortFile=${ShortFile%.pas}
>   DescrFiles="$DescrFiles --descr=../$XMLSrcDir$ShortFile.xml"
> done
>

The patch in my previous email removes the sed call, so the loop now looks
like this:
DescrFiles=''
for unit in $UnitList; do
  ShortFile=${unit%.pp}
  ShortFile=${ShortFile%.pas}
  DescrFiles="$DescrFiles --descr=../$XMLSrcDir$ShortFile.xml"
done


-- 
_| ( ) |-| |\|
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.lazarus-ide.org/pipermail/lazarus/attachments/20081015/30020c62/attachment-0007.html>


More information about the Lazarus mailing list