From owner-svn-ports-all@FreeBSD.ORG Thu Dec 26 13:15:59 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB494614; Thu, 26 Dec 2013 13:15:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F5C21F71; Thu, 26 Dec 2013 13:15:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBQDFxoR090541; Thu, 26 Dec 2013 13:15:59 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBQDFxtB090538; Thu, 26 Dec 2013 13:15:59 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201312261315.rBQDFxtB090538@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 26 Dec 2013 13:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r337501 - in branches/2014Q1/shells: bash bash-devel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Dec 2013 13:15:59 -0000 Author: mat Date: Thu Dec 26 13:15:58 2013 New Revision: 337501 URL: http://svnweb.freebsd.org/changeset/ports/337501 Log: MFH: r337433 Fix inconsistency in building bash Ensure the configure script always activate the same features wether or not fdescfs is mounted: Always consider /dev/fd as absent Bump portrevision as packages on the cluster are built with fdescfs mounted. With hat: portmgr Reported: Derek Schrock (skered- via #poudriere) Approved by: portmgr (implicit) Modified: branches/2014Q1/shells/bash-devel/Makefile branches/2014Q1/shells/bash/Makefile Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/shells/bash-devel/Makefile ============================================================================== --- branches/2014Q1/shells/bash-devel/Makefile Thu Dec 26 13:15:50 2013 (r337500) +++ branches/2014Q1/shells/bash-devel/Makefile Thu Dec 26 13:15:58 2013 (r337501) @@ -4,7 +4,7 @@ PORTNAME= bash PATCHLEVEL= 45 PORTVERSION= 4.2.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= shells MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} @@ -82,7 +82,9 @@ CPPFLAGS+= ${PTHREAD_CFLAGS} \ -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV= YACC="bison -y" +CONFIGURE_ENV= YACC="bison -y" \ + bash_cv_dev_fd=absent + post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/doc/bash.1 Modified: branches/2014Q1/shells/bash/Makefile ============================================================================== --- branches/2014Q1/shells/bash/Makefile Thu Dec 26 13:15:50 2013 (r337500) +++ branches/2014Q1/shells/bash/Makefile Thu Dec 26 13:15:58 2013 (r337501) @@ -4,7 +4,7 @@ PORTNAME= bash PATCHLEVEL= 45 PORTVERSION= 4.2.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GNU:S/$/:bash/} \ ftp://ftp.cwru.edu/pub/%SUBDIR%/:faq @@ -91,7 +91,8 @@ CPPFLAGS+= ${PTHREAD_CFLAGS} \ -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV= YACC="bison -y" +CONFIGURE_ENV= YACC="bison -y" \ + bash_cv_dev_fd=absent post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/doc/bash.1