diff options
author | axis <qt-info@nokia.com> | 2010-07-26 13:22:22 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-07-26 13:35:35 (GMT) |
commit | bf9aaa5e3e8d8310c3797e03de2b19e4143ae913 (patch) | |
tree | 0dc82f396793fec8138916d27917e43a6de653c8 /bin/createpackage.pl | |
parent | 55625badfab6bfe49c60ab5cd9a586c6bd511579 (diff) | |
download | Qt-bf9aaa5e3e8d8310c3797e03de2b19e4143ae913.zip Qt-bf9aaa5e3e8d8310c3797e03de2b19e4143ae913.tar.gz Qt-bf9aaa5e3e8d8310c3797e03de2b19e4143ae913.tar.bz2 |
Fixed package creation when shadow building.
RevBy: Markus Goetz
Diffstat (limited to 'bin/createpackage.pl')
-rwxr-xr-x | bin/createpackage.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/createpackage.pl b/bin/createpackage.pl index 8b787cb..984c1fd 100755 --- a/bin/createpackage.pl +++ b/bin/createpackage.pl @@ -300,7 +300,8 @@ if($stub) { && $templatepkg !~ m/_installer\.pkg$/i && !$onlyUnsigned) { print("Auto-patching capabilities for self signed package.\n"); - system ("patch_capabilities $pkgoutput"); + my $patch_capabilities = File::Spec->catfile(dirname($0), "patch_capabilities"); + system ("$patch_capabilities $pkgoutput"); } # Create SIS. |