aboutsummaryrefslogtreecommitdiff
path: root/editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
commit2c36078d184e6b3fde44793800a6c8ca0b0639f1 (patch)
tree19d35773be783fd6761833f599af82301c20ceac /editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl
parent46e9a484f814c07d51ab2cb90517f4f5c4c368ae (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_8_0'.release/4.8.0
Diffstat (limited to 'editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl')
-rw-r--r--editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl b/editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl
deleted file mode 100644
index 71ebdb934120..000000000000
--- a/editors/openoffice-1.1-devel/files/patch-solenv+bin+mapgen.pl
+++ /dev/null
@@ -1,21 +0,0 @@
---- ../solenv/bin/mapgen.pl.orig Sat Jul 20 22:30:21 2002
-+++ ../solenv/bin/mapgen.pl Sat Jul 20 22:31:31 2002
-@@ -112,7 +112,7 @@
-
- if ($ENV{OS} eq 'SOLARIS') {
- &gen_sol;
--} elsif ($ENV{OS} eq 'LINUX') {
-+} elsif ($ENV{OS} eq 'LINUX' || $ENV{OS} eq 'FREEBSD') {
- &gen_lnx;
- } else {
- &print_error ('Environment not set!!');
-@@ -169,7 +169,8 @@
- s/\n//;
- $env_section = '1' and next if ((/^# SOLARIS #$/) && ($ENV{OS} eq 'SOLARIS'));
- $env_section = '1' and next if ((/^# LINUX #$/) && ($ENV{OS} eq 'LINUX'));
-- last if ($env_section && ((/^# SOLARIS #$/) || (/^# LINUX #$/)));
-+ $env_section = '1' and next if ((/^# FREEBSD #$/) && ($ENV{OS} eq 'FREEBSD'));
-+ last if ($env_section && ((/^# SOLARIS #$/) || (/^# LINUX #$/) || (/^# FREEBSD #$/)));
- next if (!$_ || /^#/);
- push(@filters, $_);
- };