You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ji...@apache.org on 2019/01/22 21:28:26 UTC

svn commit: r1851867 - /openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm

Author: jim
Date: Tue Jan 22 21:28:26 2019
New Revision: 1851867

URL: http://svn.apache.org/viewvc?rev=1851867&view=rev
Log:
don't be picky about format

Modified:
    openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm

Modified: openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm?rev=1851867&r1=1851866&r2=1851867&view=diff
==============================================================================
--- openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/epmfile.pm Tue Jan 22 21:28:26 2019
@@ -846,7 +846,7 @@ sub set_patch_state
 	while (<EPMPATCH>)
 	{
 		chop;
-		if ( $_ =~ /Patched for OpenOffice.org/ ) { $installer::globals::is_special_epm = 1; }
+		if ( $_ =~ /Patched for .*OpenOffice/ ) { $installer::globals::is_special_epm = 1; }
 	}
 			
 	close (EPMPATCH);