diff options
author | ryoon <ryoon> | 2013-01-22 11:26:02 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-01-22 11:26:02 +0000 |
commit | a19960213ea081254a94f86021f39d33f5b8dd92 (patch) | |
tree | f6606b349708e624f195d612eea42a533d79593e /games/pingus | |
parent | 19be2aa5418fc93ab87a8f3a887bbe232f93984f (diff) | |
download | pkgsrc-a19960213ea081254a94f86021f39d33f5b8dd92.tar.gz |
Replace -j ${MAKE_JOBS} with ${_MAKE_JOBS}.
Fix build when MAKE_JOBS is not defined.
Diffstat (limited to 'games/pingus')
-rw-r--r-- | games/pingus/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/pingus/Makefile b/games/pingus/Makefile index ac6d1b18240..d792589429c 100644 --- a/games/pingus/Makefile +++ b/games/pingus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2012/11/23 12:35:01 joerg Exp $ +# $NetBSD: Makefile,v 1.10 2013/01/22 11:26:02 ryoon Exp $ DISTNAME= pingus-0.7.3 PKGREVISION= 6 @@ -37,7 +37,7 @@ do-configure: do-build: cd ${WRKSRC} && \ - ${PKGSRC_SETENV} ${MAKE_ENV} scons -j ${MAKE_JOBS} + ${PKGSRC_SETENV} ${MAKE_ENV} scons ${_MAKE_JOBS} do-install: cd ${WRKSRC} && ./install.sh ${DESTDIR}${PREFIX} |