diff -r 5e76a11e104b -r 7416fe50a180 sbsv1_os/e32toolp/makmake/makmake.pl --- a/sbsv1_os/e32toolp/makmake/makmake.pl Tue May 25 13:55:34 2010 +0300 +++ b/sbsv1_os/e32toolp/makmake/makmake.pl Mon Jun 21 16:57:06 2010 +0300 @@ -21,7 +21,6 @@ use FindBin; # for FindBin::Bin use Getopt::Long; use Cwd; -use strict; # modified start: makefile improvement use File::stat; use Time::localtime; @@ -1229,7 +1228,13 @@ } # set up release path - $Path{Rel}="$E32env::Data{RelPath}".lc($Plat{Real})."\\"; + if((&Plat() =~ /gcce/i) && ($TrgType{Basic} eq 'LIB')) + { + $Path{Rel}=$Path{StatLink}; + } + else { + $Path{Rel}="$E32env::Data{RelPath}".lc($Plat{Real})."\\"; + } }