Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Dec 2013 13:15:59 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
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
Message-ID:  <201312261315.rBQDFxtB090538@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312261315.rBQDFxtB090538>