Skip to content

Commit

Permalink
Move selfsigned cert & key out of root directory
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Shane Kearns committed Sep 25, 2009
1 parent 7c663d0 commit a39f171
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/createpackage.pl
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ ()
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)) {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a39f171

Please sign in to comment.