Index: head/shells/bash/Makefile =================================================================== --- head/shells/bash/Makefile +++ head/shells/bash/Makefile @@ -4,7 +4,7 @@ PORTNAME= bash PATCHLEVEL= 12 PORTVERSION= 4.4.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= shells MASTER_SITES= GNU/${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -22,8 +22,9 @@ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS_DEFINE= COLONBREAKSWORDS HELP NLS STATIC SYSLOG DOCS +OPTIONS_DEFINE= COLONBREAKSWORDS FDESCFS HELP NLS STATIC SYSLOG DOCS COLONBREAKSWORDS_DESC= Colons break words +FDESCFS_DESC= Enable use of /dev/fd HELP_DESC= Enable builtin help OPTIONS_DEFAULT= COLONBREAKSWORDS HELP @@ -35,6 +36,9 @@ COLONBREAKSWORDS_EXTRA_PATCHES= ${PATCHDIR}/extrapatch-colonbreakswords +FDESCFS_CONFIGURE_ENV_OFF= bash_cv_dev_fd=absent +FDESCFS_SUB_FILES= pkg-message + HELP_CONFIGURE_ENABLE= help-builtin NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext Index: head/shells/bash/files/pkg-message.in =================================================================== --- head/shells/bash/files/pkg-message.in +++ head/shells/bash/files/pkg-message.in @@ -0,0 +1,13 @@ +====================================================================== + +bash requires fdescfs(5) mounted on /dev/fd + +If you have not done it yet, please do the following: + + mount -t fdescfs fdescfs /dev/fd + +To make it permanent, you need the following lines in /etc/fstab: + + fdescfs /dev/fd fdescfs rw,late 0 0 + +====================================================================== Index: head/shells/bash/pkg-message =================================================================== --- head/shells/bash/pkg-message +++ head/shells/bash/pkg-message @@ -1,13 +0,0 @@ -====================================================================== - -bash requires fdescfs(5) mounted on /dev/fd - -If you have not done it yet, please do the following: - - mount -t fdescfs fdescfs /dev/fd - -To make it permanent, you need the following lines in /etc/fstab: - - fdescfs /dev/fd fdescfs rw,late 0 0 - -======================================================================