To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78950
Issue #|78950
Summary|wrong PYTHONPATH in smoketest.pl
Component|Installation
Version|OOo 2.2.1
Platform|All
URL|
OS/Version|All
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|DEFECT
Priority|P2
Subcomponent|code
Assigned to|rene
Reported by|rene
------- Additional comments from [EMAIL PROTECTED] Wed Jun 27 14:43:42 +0000
2007 -------
Currently, smoketest.pl contains this:
$ENV{'PYTHONPATH'} =
"$ENV{SOLARROOT}/instsetoo_native/$ENV{INPATH}/bin:$ENV{SOLARVER}/$ENV{UPD}/$ENV{INPATH}/lib";
which - since some version - now expands to
.../solver/680/680/unx<whatever>/lib. Of course the one 680 too much. This is
because SOLARVER now contains the 680.
Trivial Patch:
--- smoketestoo_native/smoketest.pl 5 Feb 2007 11:40:45 -0000 1.24
+++ smoketestoo_native/smoketest.pl 27 Jun 2007 14:34:38 -0000
@@ -574,7 +574,7 @@
if ( $ENV{'SYSTEM_MOZILLA'} eq 'YES' ) {
$ENV{'LD_LIBRARY_PATH'} =
"$ENV{'MOZ_LIB'}:$ENV{'LD_LIBRARY_PATH'}";
}
- $ENV{'PYTHONPATH'} =
"$ENV{SOLARROOT}/instsetoo_native/$ENV{INPATH}/bin:$ENV{SOLARVER}/$ENV{UPD}/$ENV{INPATH}/lib";
+ $ENV{'PYTHONPATH'} =
"$ENV{SOLARROOT}/instsetoo_native/$ENV{INPATH}/bin:$ENV{SOLARVER}/$ENV{INPATH}/lib";
$ENV{OUT} = "../$ENV{INPATH}";
$ENV{LOCAL_OUT} = "../$ENV{INPATH}";
$ENV{LOCAL_COMMON_OUT} = "../$ENV{INPATH}";
Will fix it myself...
---------------------------------------------------------------------
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]