summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-08-31 10:46:01 +0300
committerJanne Anttila <janne.anttila@digia.com>2009-08-31 10:46:01 +0300
commit10e3f11057218dac621087980bc37db464838941 (patch)
tree01ad70690f4a0349dc6541f516144f29ffc870c9 /bin
parent01ee1740290ad192f98bb1d3d24e419e08be5806 (diff)
Fixed createpackage to use lowercase target to be Linux compliant.
All S60 SDK paths in Linux are lowercase. Reviewed-by: TrustMe
Diffstat (limited to 'bin')
-rw-r--r--bin/createpackage.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl
index af46e04050..a1808648fc 100644
--- a/bin/createpackage.pl
+++ b/bin/createpackage.pl
@@ -52,7 +52,7 @@ unless (GetOptions('i|install' => \$install, 'p|preprocess' => \$preprocessonly)
# 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];