To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75500
Issue #|75500
Summary|Clean BASH_ENV for w32 bash build
Component|porting
Version|680m205
Platform|All
URL|
OS/Version|All
Status|UNCONFIRMED
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P3
Subcomponent|code
Assigned to|mh
Reported by|tono
------- Additional comments from [EMAIL PROTECTED] Sun Mar 18 05:09:01 +0000
2007 -------
BASH_ENV may influence environment in sub-shell (most possibly called from
gmake build in 3rd party projects) and should be cleaned.
--- ooo_src680_m205/config_office/set_soenv.in.orig 2007-02-06
23:26:11.000000000 +0900
+++ ooo_src680_m205/config_office/set_soenv.in 2007-02-15 21:33:14.000000000
+0900
@@ -1916,6 +1916,10 @@
print OUT_SH "export $exportvars$newline";
print OUT_SH "unset $unsetvarssh$newline";
+if ( $platform =~ m/cygwin/ and '@USE_SHELL@' eq "bash" ) {
+ print OUT_SH "unset BASH_ENV$newline";
+}
+
if(defined($outfile_bat))
{ print OUT_BAT $unsetvarsbat;
}
---------------------------------------------------------------------
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]