Kaydet (Commit) 8817dcb8 authored tarafından Michael Stahl's avatar Michael Stahl

l10ntools: remove Package_ulfconv

Change-Id: I7a8c3fdf34951e00fca8c0a2543f33817fa874fa
üst 5503a683
......@@ -25,8 +25,4 @@ $(eval $(call gb_Module_add_targets_for_build,l10ntools,\
StaticLibrary_transex \
))
$(eval $(call gb_Module_add_targets,l10ntools,\
Package_ulfconv \
))
# vim:set noet sw=4 ts=4:
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_Package_Package,l10ntools_ulfconv,$(SRCDIR)/l10ntools/source/ulfconv))
$(eval $(call gb_Package_set_outdir,l10ntools_ulfconv,$(OUTDIR)))
$(eval $(call gb_Package_add_file,l10ntools_ulfconv,bin/msi-encodinglist.txt,msi-encodinglist.txt))
# vim: set noet sw=4 ts=4:
......@@ -408,14 +408,13 @@ sub check_logfile
sub read_lcidlist
{
my ($patharrayref) = @_;
my $fileref = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$installer::globals::lcidlistname, $patharrayref , 0);
if ( $$fileref eq "" ) { installer::exiter::exit_program("ERROR: Did not find Windows LCID list $installer::globals::lcidlistname!", "read_lcidlist"); }
if ( ! -f $installer::globals::lcidlistname ) { installer::exiter::exit_program("ERROR: Did not find Windows LCID list $installer::globals::lcidlistname!", "read_lcidlist"); }
my $infoline = "Found LCID file: $$fileref\n";
my $infoline = "Found LCID file: $installer::globals::lcidlistname\n";
push(@installer::globals::globallogfileinfo, $infoline);
my $lcidlist = installer::files::read_file($$fileref);
my $lcidlist = installer::files::read_file($installer::globals::lcidlistname);
my %msilanguage = ();
for ( my $i = 0; $i <= $#{$lcidlist}; $i++ )
......
......@@ -81,7 +81,7 @@ BEGIN
$templatefoldername = "Templates";
$programmenufolder = "ProgramMenuFolder";
$systemfolder = "SystemFolder";
$lcidlistname = "msi-encodinglist.txt";
$lcidlistname = $ENV{'SRCDIR'} . "/l10ntools/source/ulfconv/msi-encodinglist.txt";
$msilanguage = ""; # hash reference for msi languages LCID
$sofficeiconadded = 0;
$temppath = "";
......
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