diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-01-22 11:15:27 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-01-22 11:15:27 +0000 |
commit | e6e4d000e4d18dba7b7dc8a44f5b75e7d9aad563 (patch) | |
tree | cb3ff7b12579f138c7d8da75c63efb1cb0077c62 /inputmethod | |
parent | 9747a08f2bf3d187fe940ff26da230fed5060c2d (diff) | |
download | pkgsrc-e6e4d000e4d18dba7b7dc8a44f5b75e7d9aad563.tar.gz |
Fix build when MAKE_JOBS is not defined, use _MAKE_JOBS.
Diffstat (limited to 'inputmethod')
-rw-r--r-- | inputmethod/ibus-mozc/Makefile.common | 4 | ||||
-rw-r--r-- | inputmethod/mozc-server/Makefile | 4 | ||||
-rw-r--r-- | inputmethod/mozc-tool/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/inputmethod/ibus-mozc/Makefile.common b/inputmethod/ibus-mozc/Makefile.common index 7691b945841..61b2ed4f9fe 100644 --- a/inputmethod/ibus-mozc/Makefile.common +++ b/inputmethod/ibus-mozc/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2013/01/20 08:28:36 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.3 2013/01/22 11:15:27 ryoon Exp $ # used by inputmethod/mozc-server/Makefile # used by inputmethod/mozc-tool/Makefile # @@ -60,7 +60,7 @@ do-configure: cd ${WRKSRC} && env ${MAKE_ENV} \ GYP_DEFINES="use_libprotobuf=1" \ ${PYTHONBIN} build_mozc.py gyp --os=netbsd && \ - ${PYTHONBIN} build_mozc.py build_tools -c Release -j ${MAKE_JOBS} + ${PYTHONBIN} build_mozc.py build_tools -c Release ${_MAKE_JOBS} .include "../../devel/glib2/buildlink3.mk" .include "../../devel/protobuf/buildlink3.mk" diff --git a/inputmethod/mozc-server/Makefile b/inputmethod/mozc-server/Makefile index ab7ffd9bc35..7ca93bd6cf1 100644 --- a/inputmethod/mozc-server/Makefile +++ b/inputmethod/mozc-server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2013/01/18 11:38:40 ryoon Exp $ +# $NetBSD: Makefile,v 1.2 2013/01/22 11:15:28 ryoon Exp $ # PKGNAME= ${DISTNAME:S/mozc-/mozc-server-/} @@ -7,7 +7,7 @@ INSTALLATION_DIRS+= libexec do-build: cd ${WRKSRC} && env ${MAKE_ENV} \ - ${PYTHONBIN} build_mozc.py build -c Release -j ${MAKE_JOBS} \ + ${PYTHONBIN} build_mozc.py build -c Release ${_MAKE_JOBS} \ server/server.gyp:mozc_server do-install: diff --git a/inputmethod/mozc-tool/Makefile b/inputmethod/mozc-tool/Makefile index 9b887bf0156..cc861fdf4d6 100644 --- a/inputmethod/mozc-tool/Makefile +++ b/inputmethod/mozc-tool/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2013/01/18 11:38:02 ryoon Exp $ +# $NetBSD: Makefile,v 1.2 2013/01/22 11:15:28 ryoon Exp $ # PKGNAME= ${DISTNAME:S/mozc-/mozc-tool-/} @@ -11,7 +11,7 @@ ALL_ENV+= qt_dir=${QTDIR} do-build: cd ${WRKSRC} && env ${MAKE_ENV} \ - ${PYTHONBIN} build_mozc.py build -c Release -j ${MAKE_JOBS} \ + ${PYTHONBIN} build_mozc.py build -c Release ${_MAKE_JOBS} \ gui/gui.gyp:mozc_tool do-install: |