To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43294
Issue #:|43294
Summary:|W32-4nt: Build fails in scp2
Component:|tools
Version:|680m79
Platform:|PC
URL:|
OS/Version:|Windows 2000
Status:|NEW
Status whiteboard:|
Keywords:|
Resolution:|
Issue type:|DEFECT
Priority:|P3
Subcomponent:|code
Assigned to:|mh
Reported by:|vq
------- Additional comments from [EMAIL PROTECTED] Mon Feb 21 20:44:37 -0800
2005 -------
The build fails with:
ERROR: No language defined!
This fails because of a stupidity (feature?) of cygwin that converts all
environment variables to upper case because windows environment variables
are case insensitive. Solution: Don't use lower case variables.
This fixes it for me:
In scp2/macros/macro.pl
-my $completelangiso_var = $ENV{completelangiso_var};
+my $completelangiso_var = $ENV{COMPLETELANGISO_VAR};
but a propper patch would change all occurences of completelangiso_var
to upper case.
(I'm a bit confused why only W32-4nt tripps over this problem and W32-tcsh
works as it is.)
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]