diff options
author | tcort <tcort> | 2013-02-12 23:27:24 +0000 |
---|---|---|
committer | tcort <tcort> | 2013-02-12 23:27:24 +0000 |
commit | 845c5bf39002c79f3ad7eda7f0149633d739e039 (patch) | |
tree | 875e5c111f69fd8fd5cda572c543076714ae57f6 /shells/bash2 | |
parent | 7f0946da1188da101169c96e0c8d08cac13bf311 (diff) | |
download | pkgsrc-845c5bf39002c79f3ad7eda7f0149633d739e039.tar.gz |
shells/bash2: disable job control on Minix
OK by wiz
Diffstat (limited to 'shells/bash2')
-rw-r--r-- | shells/bash2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile index c7dbb341cef..1a8cfd942b6 100644 --- a/shells/bash2/Makefile +++ b/shells/bash2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.82 2012/09/11 23:25:07 asau Exp $ +# $NetBSD: Makefile,v 1.83 2013/02/12 23:27:24 tcort Exp $ # DISTNAME= bash-2.05b @@ -57,6 +57,11 @@ BUILDLINK_DEPMETHOD.readline= build CONFIGURE_ENV+= ac_cv_type_wctype_t=no .endif +# Minix lacks setpgid() which is needed for job control. +.if ${OPSYS} == "Minix" +CONFIGURE_ARGS+= --disable-job-control +.endif + BUILDLINK_API_DEPENDS.readline+= readline>=4.3 .include "../../devel/gettext-lib/buildlink3.mk" |