svn commit: r337433 - in head/shells: bash bash-devel

Baptiste Daroussin bapt at FreeBSD.org
Wed Dec 25 17:42:55 UTC 2013


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


More information about the svn-ports-head mailing list