equal
deleted
inserted
replaced
1 #!perl |
1 #!perl |
2 # fsh-buildsis |
2 # fsh-buildsis |
3 # |
3 # |
4 # Copyright (c) 2008-2010 Accenture. All rights reserved. |
4 # Copyright (c) 2008 - 2010 Accenture. All rights reserved. |
5 # This component and the accompanying materials are made available |
5 # This component and the accompanying materials are made available |
6 # under the terms of the "Eclipse Public License v1.0" |
6 # under the terms of the "Eclipse Public License v1.0" |
7 # which accompanies this distribution, and is available |
7 # which accompanies this distribution, and is available |
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
9 # |
9 # |
10 # Initial Contributors: |
10 # Initial Contributors: |
11 # Accenture - Initial contribution |
11 # Accenture - Initial contribution |
12 # |
12 |
13 # Description: |
13 # Description: |
14 # fsh-buildsis - A tool that generates SIS files. |
14 # fsh-buildsis - A tool that generates SIS files. |
15 |
15 |
16 use strict; |
16 use strict; |
17 use Cwd; |
17 use Cwd; |
75 my $keyFileName = shift; |
75 my $keyFileName = shift; |
76 |
76 |
77 # |
77 # |
78 # 1) Run the pre-processor over the supplied .iby file and capture the output |
78 # 1) Run the pre-processor over the supplied .iby file and capture the output |
79 # to a temporary file. |
79 # to a temporary file. |
80 my $tempFileName = "$ENV{TEMP}\\ltkbs_temp.pkg"; |
80 my $tempFileName = "$ENV{TEMP}\\fsh-buildsis_temp.pkg"; |
81 if (-e $tempFileName) { |
81 if (-e $tempFileName) { |
82 unlink $tempFileName; |
82 unlink $tempFileName; |
83 } |
83 } |
84 my $ibyDirName = dirname($ibyFileName); |
84 my $ibyDirName = dirname($ibyFileName); |
85 $ibyFileName = basename($ibyFileName); |
85 $ibyFileName = basename($ibyFileName); |