Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Dec 2013 17:42:54 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
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
Message-ID:  <201312251742.rBPHgsGi032338@svn.freebsd.org>

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



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