diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-08-31 07:46:01 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-08-31 07:46:01 (GMT) |
commit | 10e3f11057218dac621087980bc37db464838941 (patch) | |
tree | 01ad70690f4a0349dc6541f516144f29ffc870c9 | |
parent | 01ee1740290ad192f98bb1d3d24e419e08be5806 (diff) | |
download | Qt-10e3f11057218dac621087980bc37db464838941.zip Qt-10e3f11057218dac621087980bc37db464838941.tar.gz Qt-10e3f11057218dac621087980bc37db464838941.tar.bz2 |
Fixed createpackage to use lowercase target to be Linux compliant.
All S60 SDK paths in Linux are lowercase.
Reviewed-by: TrustMe
-rw-r--r-- | bin/createpackage.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl index af46e04..a180864 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]; |