summaryrefslogtreecommitdiff
path: root/japanese
diff options
context:
space:
mode:
authorDaichi GOTO <daichi@FreeBSD.org>2012-05-01 06:38:43 +0000
committerDaichi GOTO <daichi@FreeBSD.org>2012-05-01 06:38:43 +0000
commit076e412612e9e33636b63f8cbd59dc58f660a2e6 (patch)
treeaa9c5a2b87ddb3a86c937f6f7ce24c06c32e43c2 /japanese
parent. Update to 7u4. (diff)
removed unneeded patch file
Notes
Notes: svn path=/head/; revision=295773
Diffstat (limited to 'japanese')
-rw-r--r--japanese/mozc-server/files/patch-build_mozc.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/japanese/mozc-server/files/patch-build_mozc.py b/japanese/mozc-server/files/patch-build_mozc.py
deleted file mode 100644
index 873391ff412e..000000000000
--- a/japanese/mozc-server/files/patch-build_mozc.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- build_mozc.py.orig 2012-04-02 08:17:58.918726529 +0900
-+++ build_mozc.py 2012-04-02 08:38:43.715726567 +0900
-@@ -76,7 +76,7 @@
-
- def IsLinux():
- """Returns true if the platform is Linux."""
-- return os.name == 'posix' and os.uname()[0] == 'Linux'
-+ return os.name == 'posix' and ( os.uname()[0] == 'Linux' or os.uname()[0] == 'FreeBSD' )
-
-
- # TODO(yukawa): Move this function to util.py (b/2715400)