From owner-svn-ports-head@FreeBSD.ORG Wed Dec 25 17:42:55 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0077D810; Wed, 25 Dec 2013 17:42:54 +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 C6804162B; Wed, 25 Dec 2013 17:42:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBPHgsHE032340; Wed, 25 Dec 2013 17:42:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBPHgsGi032338; Wed, 25 Dec 2013 17:42:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312251742.rBPHgsGi032338@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 25 Dec 2013 17:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337433 - in head/shells: bash bash-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Dec 2013 17:42:55 -0000 Author: bapt Date: Wed Dec 25 17:42:54 2013 New Revision: 337433 URL: http://svnweb.freebsd.org/changeset/ports/337433 Log: 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) Modified: head/shells/bash-devel/Makefile head/shells/bash/Makefile Modified: head/shells/bash-devel/Makefile ============================================================================== --- head/shells/bash-devel/Makefile Wed Dec 25 17:10:20 2013 (r337432) +++ head/shells/bash-devel/Makefile Wed Dec 25 17:42:54 2013 (r337433) @@ -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: head/shells/bash/Makefile ============================================================================== --- head/shells/bash/Makefile Wed Dec 25 17:10:20 2013 (r337432) +++ head/shells/bash/Makefile Wed Dec 25 17:42:54 2013 (r337433) @@ -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