sbsv1_os/e32toolp/makmake/makmake.pl
branchRCL_3
changeset 62 7416fe50a180
parent 18 99082257a271
child 64 15948b6bf933
child 73 22bdd8a90cc4
--- 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})."\\";
+	}
 	
 }