summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-05-15 13:59:33 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-05-15 13:59:33 +0000
commit1415ae26368fb0ffbc3bd8ef42381c726b369d20 (patch)
tree08fc6ce568b1ac5fd9e1777f65c3d0be77714e0c /editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl
parentUpgrade to 1.7.8. (diff)
Fix SDK part, so that really usable
Diffstat (limited to 'editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl')
-rw-r--r--editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl28
1 files changed, 28 insertions, 0 deletions
diff --git a/editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl b/editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl
new file mode 100644
index 000000000000..9753da461aa6
--- /dev/null
+++ b/editors/openoffice.org-vcltesttool/files/patch-odk+configure.pl
@@ -0,0 +1,28 @@
+Issutracker : #iXXXXX#
+CWS : N/A
+Author : NAKATA Maho <maho@openoffice.org> (JCA)
+Description : canonical name by config.guess for FreeBSD is
+% ./config.guess
+i386-unknown-freebsd5.3
+so, $main::operatingSystem is
+% ./config.guess | cut -d"-" -f3,4
+freebsd5.3
+then, if ( $main::operatingSystem eq "FreeBSD" ) is not correct,
+and if ( $main::operatingSystem =~ /freebsd/ ) is correct
+
+Index: odk/configure.pl
+===================================================================
+RCS file: /cvs/api/odk/configure.pl,v
+retrieving revision 1.11
+diff -u -r1.11 configure.pl
+--- odk/configure.pl 29 Mar 2005 12:03:00 -0000 1.11
++++ odk/configure.pl 15 May 2005 08:46:20 -0000
+@@ -45,7 +45,7 @@
+
+ $main::OO_SDK_MAKE_HOME = "";
+ $main::makeName = "make";
+-if ( $main::operatingSystem eq "FreeBSD" )
++if ( $main::operatingSystem =~ /freebsd/ )
+ {
+ $main::makeName = "gmake";
+ }