svn commit: r560707 - head/shells/bash

Baptiste Daroussin bapt at FreeBSD.org
Thu Jan 7 13:22:21 UTC 2021


Author: bapt
Date: Thu Jan  7 13:22:20 2021
New Revision: 560707
URL: https://svnweb.freebsd.org/changeset/ports/560707

Log:
  Enforce using libncursesw like the rest of the ports
  
  The whole ports tree has been enforced on libncursesw (widechar) version for a while.
  With the exception of a few ports including bash.
  
  This is even more problematic in the case of bash because it links to libreadline which is
  linked to libncursesw.so

Modified:
  head/shells/bash/Makefile

Modified: head/shells/bash/Makefile
==============================================================================
--- head/shells/bash/Makefile	Thu Jan  7 12:35:07 2021	(r560706)
+++ head/shells/bash/Makefile	Thu Jan  7 13:22:20 2021	(r560707)
@@ -4,7 +4,7 @@
 PORTNAME=		bash
 PATCHLEVEL=		4
 PORTVERSION=		5.1.${PATCHLEVEL:S/^0//g}
-PORTREVISION?=		0
+PORTREVISION?=		1
 CATEGORIES=		shells
 MASTER_SITES=		GNU
 DISTNAME=		${PORTNAME}-${PORTVERSION:R}
@@ -55,6 +55,8 @@ CONFIGURE_ARGS+=	--without-bash-malloc \
 			--disable-rpath \
 			--enable-disabled-builtins \
 			--with-libiconv-prefix=${ICONV_PREFIX}
+
+MAKE_ARGS+=	TERMCAP_LIB=-lncursesw
 
 .if empty(PKGNAMESUFFIX)
 CONFLICTS+=		bash-static-[0-9]*


More information about the svn-ports-head mailing list