summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2021-06-16 12:30:04 +0000
committerjperkin <jperkin@pkgsrc.org>2021-06-16 12:30:04 +0000
commitd0b773e69d0e78930767872973d4d28de0554590 (patch)
treea58d6ec23693c8fb6a894f3878e9a9b3d71e147e /shells
parent76f5b1afa4709a835fd52dc620804553206ad4e8 (diff)
downloadpkgsrc-d0b773e69d0e78930767872973d4d28de0554590.tar.gz
bash: Add --enable-function-import.
This is required to make 'export -f' work, which is enabled by default on other OS I checked. While here sort the list of enabled options so that it's easier to compare against the list of available options, as there are still a number that we do not enable, and remove the bogus comment. Bump PKGREVISION.
Diffstat (limited to 'shells')
-rw-r--r--shells/bash/Makefile28
1 files changed, 14 insertions, 14 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile
index e2617050bf4..afe2e6fb076 100644
--- a/shells/bash/Makefile
+++ b/shells/bash/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.99 2021/05/17 22:10:43 kre Exp $
+# $NetBSD: Makefile,v 1.100 2021/06/16 12:30:04 jperkin Exp $
BASH_VERSION= 5.1
BASH_PATCHLEVEL= 8
-PKGREVISION= 1
+PKGREVISION= 2
DISTNAME= bash-${BASH_VERSION}
PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL}
@@ -33,20 +33,20 @@ INFO_FILES= YES # PLIST
PKG_SHELL= bin/bash
INSTALLATION_DIRS= ${PKGMANDIR}/man1
-# All features enabled by default.
-CONFIGURE_ARGS+= --enable-readline
-CONFIGURE_ARGS+= --enable-progcomp
-CONFIGURE_ARGS+= --enable-process-substitution
-CONFIGURE_ARGS+= --enable-history
-CONFIGURE_ARGS+= --enable-help-builtin
-CONFIGURE_ARGS+= --enable-extended-glob
-CONFIGURE_ARGS+= --enable-dparen-arithmetic
-CONFIGURE_ARGS+= --enable-directory-stack
-CONFIGURE_ARGS+= --enable-debugger
-CONFIGURE_ARGS+= --enable-cond-regexp
CONFIGURE_ARGS+= --enable-alias
-CONFIGURE_ARGS+= --enable-brace-expansion
CONFIGURE_ARGS+= --enable-array-variables
+CONFIGURE_ARGS+= --enable-brace-expansion
+CONFIGURE_ARGS+= --enable-cond-regexp
+CONFIGURE_ARGS+= --enable-debugger
+CONFIGURE_ARGS+= --enable-directory-stack
+CONFIGURE_ARGS+= --enable-dparen-arithmetic
+CONFIGURE_ARGS+= --enable-extended-glob
+CONFIGURE_ARGS+= --enable-function-import
+CONFIGURE_ARGS+= --enable-help-builtin
+CONFIGURE_ARGS+= --enable-history
+CONFIGURE_ARGS+= --enable-process-substitution
+CONFIGURE_ARGS+= --enable-progcomp
+CONFIGURE_ARGS+= --enable-readline
.include "../../mk/bsd.prefs.mk"
.include "options.mk"