Kaydet (Commit) 364f8a57 authored tarafından Michael Stahl's avatar Michael Stahl

setup_native: these 2 mac files are already hard-coded in installer

Change-Id: Ie7cbd70018a58a43ed25b207b243e1ebc2f2b9d6
üst bfc11089
......@@ -11,8 +11,6 @@ $(eval $(call gb_Package_Package,setup_native/misc,$(SRCDIR)/setup_native/source
$(eval $(call gb_Package_set_outdir,setup_native/misc,$(OUTDIR)))
$(eval $(call gb_Package_add_file,setup_native/misc,bin/Info.plist.langpack,mac/Info.plist.langpack))
$(eval $(call gb_Package_add_file,setup_native/misc,bin/ooo3_installer.icns,mac/ooo3_installer.icns))
$(eval $(call gb_Package_add_file,setup_native/misc,bin/osl/DS_Store,mac/ooo/DS_Store))
$(eval $(call gb_Package_add_file,setup_native/misc,bin/osl/DS_Store_Dev,mac/ooo/DS_Store_Dev))
$(eval $(call gb_Package_add_file,setup_native/misc,bin/osl/DS_Store_Langpack,mac/ooo/DS_Store_Langpack))
......
......@@ -377,19 +377,18 @@ sub create_package
# Copy also Info.plist and icon file
# Finding both files in solver
my $iconfile = "ooo3_installer.icns";
my $iconfileref = installer::scriptitems::get_sourcepath_from_filename_and_includepath( \$iconfile, $includepatharrayref, 0);
if ($$iconfileref eq "") { installer::exiter::exit_program("ERROR: Could not find Apple script icon file $iconfile!", "create_package"); }
my $iconfileref = $ENV{'SRCDIR'} . "/setup_native/source/mac/" . $iconfile;
if (! -f $iconfileref) { installer::exiter::exit_program("ERROR: Could not find Apple script icon file $iconfile ($iconfileref)!", "create_package"); }
my $subdir = $contentsfolder . "/" . "Resources";
if ( ! -d $subdir ) { installer::systemactions::create_directory($subdir); }
$destfile = $subdir . "/" . $iconfile;
installer::systemactions::copy_one_file($$iconfileref, $destfile);
installer::systemactions::copy_one_file($iconfileref, $destfile);
my $infoplistfile = "Info.plist.langpack";
my $installname = "Info.plist";
my $infoplistfileref = installer::scriptitems::get_sourcepath_from_filename_and_includepath( \$infoplistfile, $includepatharrayref, 0);
if ($$infoplistfileref eq "") { installer::exiter::exit_program("ERROR: Could not find Apple script Info.plist: $infoplistfile!", "create_package"); }
my $infoplistfile = $ENV{'SRCDIR'} . "/setup_native/source/mac/Info.plist.langpack";
if (! -f $infoplistfile) { installer::exiter::exit_program("ERROR: Could not find Apple script Info.plist: $infoplistfile!", "create_package"); }
$destfile = $contentsfolder . "/" . $installname;
installer::systemactions::copy_one_file($$infoplistfileref, $destfile);
installer::systemactions::copy_one_file($infoplistfile, $destfile);
# Replacing variables in Info.plist
$scriptfilecontent = installer::files::read_file($destfile);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment