This is an automated email from the ASF dual-hosted git repository.
jim pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new c971757 This is Perl, not C :-)
c971757 is described below
commit c9717572d8f50208f0ee823dbac5bcb62fd0bbc5
Author: Jim Jagielski <[email protected]>
AuthorDate: Tue Nov 24 08:32:16 2020 -0500
This is Perl, not C :-)
---
main/solenv/bin/modules/installer/epmfile.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/solenv/bin/modules/installer/epmfile.pm
b/main/solenv/bin/modules/installer/epmfile.pm
index 6da14dd..c7f9860 100644
--- a/main/solenv/bin/modules/installer/epmfile.pm
+++ b/main/solenv/bin/modules/installer/epmfile.pm
@@ -847,8 +847,8 @@ sub set_patch_state
while (<EPMPATCH>)
{
chop;
- if ( $_ =~ /Patched for .*OpenOffice/ ) {
$installer::globals::is_special_epm = 1; break; }
- if ( $_ =~ /Apache OpenOffice compatible/ ) {
$installer::globals::is_special_epm = 1; break; }
+ if ( $_ =~ /Patched for .*OpenOffice/ ) {
$installer::globals::is_special_epm = 1; last; }
+ if ( $_ =~ /Apache OpenOffice compatible/ ) {
$installer::globals::is_special_epm = 1; last; }
}
close (EPMPATCH);