diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2011-12-10 11:14:24 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2011-12-10 11:14:24 +0000 |
commit | d338c492b0c50161c8fa551b851582a206f94018 (patch) | |
tree | 16d7d95d5b5e2353b1625d1a380bfa8000407718 /japanese/mozc-additions | |
parent | 9e572d3992bda41c51b7df96872f1db0ed53541e (diff) |
Fixed a build error caused by a gcc 4.2.1's namespace bug.
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=287145
Diffstat (limited to 'japanese/mozc-additions')
-rw-r--r-- | japanese/mozc-additions/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/japanese/mozc-additions/Makefile b/japanese/mozc-additions/Makefile index d3725df179fe..9a93a1da6948 100644 --- a/japanese/mozc-additions/Makefile +++ b/japanese/mozc-additions/Makefile @@ -15,10 +15,11 @@ MAINTAINER= daichi@FreeBSD.org COMMENT= Additional tools and images for Mozc Japanese Input Method NO_BUILD= yes -REPLACE_FILES= ${WRKSRC}/Makefile +LOCALBASE_REPLACE_FILES= \ + ${WRKSRC}/Makefile post-patch: - @for FILE in ${REPLACE_FILES}; \ + @for FILE in ${LOCALBASE_REPLACE_FILES}; \ do \ ${SED} -i .bak -e "s/@@LOCALBASE@@/${LOCALBASE:S/\//\\\//g}/g" \ $${FILE}; \ |