Only run 'make installer' if the settings say to make an installer. If not making an installer, return success.

This commit is contained in:
bryner%brianryner.com 2004-03-25 08:18:29 +00:00
Родитель 8381a8aafc
Коммит 4408a64d26
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -74,8 +74,12 @@ sub packit {
}
# the one operation we care about saving status of
$status = TinderUtils::run_shell_command "make -C $packaging_dir installer";
if ($Settings::sea_installer || $Settings::stub_installer) {
$status = TinderUtils::run_shell_command "make -C $packaging_dir installer";
} else {
$status = 1;
}
if (is_windows()) {
$ENV{PATH} = $save_path;
#my $dos_stagedir = `cygpath -w $stagedir`;