diff options
author | veego <veego@pkgsrc.org> | 2007-09-21 16:38:52 +0000 |
---|---|---|
committer | veego <veego@pkgsrc.org> | 2007-09-21 16:38:52 +0000 |
commit | 7823f52dc6397e608abf450a210e25242e91c8fb (patch) | |
tree | b8fcbcede7909b2d2a016237db7cb318f9a585b2 /misc | |
parent | d78a4f3fbc23caf4afe5577a0d144551d17d0bc8 (diff) | |
download | pkgsrc-7823f52dc6397e608abf450a210e25242e91c8fb.tar.gz |
Add MAKE_JOBS_SAFE=no to fix the following build problem:
epgui/piremind.c:1355: error: 'EPGTCL_RPI_IDX_COUNT'
undeclared (first use in this function)
There is a '-include $(BUILD_DIR)/*/*.dep' line in the package
main Makefile, but it looks like this won't work and so
build-netbsd/epgtcl/dlg_remind.h wasn't created early enough which
contains this and other defines.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/nxtvepg/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/nxtvepg/Makefile b/misc/nxtvepg/Makefile index 45449385a3e..496a55e04e8 100644 --- a/misc/nxtvepg/Makefile +++ b/misc/nxtvepg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2007/02/22 19:26:50 wiz Exp $ +# $NetBSD: Makefile,v 1.52 2007/09/21 16:38:52 veego Exp $ DISTNAME= nxtvepg-2.7.6 PKGREVISION= 1 @@ -9,6 +9,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://sourceforge.net/projects/nxtvepg/ COMMENT= NextView EPG decoder +MAKE_JOBS_SAFE= no + ONLY_FOR_PLATFORM= NetBSD-1.4[Y-Z]-* NetBSD-1.4Z[A-Z]-* \ NetBSD-1.5_ALPHA-* NetBSD-1.[5-9]*-* \ NetBSD-[2-9]*-* |