Skip to content

Commit

Permalink
Fixed createpackage to use lowercase target to be Linux compliant.
Browse files Browse the repository at this point in the history
All S60 SDK paths in Linux are lowercase.

Reviewed-by: TrustMe
  • Loading branch information
Janne Anttila committed Aug 31, 2009
1 parent 01ee174 commit 10e3f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/createpackage.pl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ()

# Read params to variables
my $templatepkg = $ARGV[0];
my $targetplatform = uc $ARGV[1];
my $targetplatform = lc $ARGV[1];

my @tmpvalues = split('-', $targetplatform);
my $target = $tmpvalues[0];
Expand Down

0 comments on commit 10e3f11

Please sign in to comment.