diff options
author | Shane Kearns <shane.kearns@sosco.com> | 2009-09-25 12:28:53 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@sosco.com> | 2009-09-25 12:30:55 (GMT) |
commit | a39f17108e43e8b676738c15d8f0c150787de514 (patch) | |
tree | 85dde38ef1341a03f13b51b442aa61056a54aed5 /bin | |
parent | 7c663d00eeea346813bb7ebcc36ac042b03e7688 (diff) | |
download | Qt-a39f17108e43e8b676738c15d8f0c150787de514.zip Qt-a39f17108e43e8b676738c15d8f0c150787de514.tar.gz Qt-a39f17108e43e8b676738c15d8f0c150787de514.tar.bz2 |
Move selfsigned cert & key out of root directory
Moved the certificate/key to the src/s60installs path.
Updated createpackage.pl to look in this new location.
Task-number: QTBUG-4553
Reviewed-by: axis
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/createpackage.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl index 4597b04..7e87758 100755 --- a/bin/createpackage.pl +++ b/bin/createpackage.pl @@ -146,9 +146,9 @@ my $signed_sis_name = $pkgoutputbasename.".sis"; my $scriptpath = dirname(__FILE__); my $certtext = $certificate; my $certpath = $scriptpath; -$certpath =~ s-^(.*[^\\])$-$1\\-o; # ensure path ends with a backslash -$certpath = $certpath."../"; # certificates are one step up in hierarcy -$certpath =~ s-/-\\-go; # for those working with UNIX shells +$certpath =~ s-^(.*[^\\])$-$1\\-o; # ensure path ends with a backslash +$certpath =~ s-/-\\-go; # for those working with UNIX shells +$certpath =~ s-bin\\$-src\\s60installs\\-; # certificates are one step up in hierarcy # Check some pre-conditions and print error messages if needed unless (length($templatepkg) && length($platform) && length($target)) { |