pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/shells/bash
Module Name: pkgsrc
Committed By: jperkin
Date: Wed Jun 16 12:30:04 UTC 2021
Modified Files:
pkgsrc/shells/bash: Makefile
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 pkgsrc/shells/bash/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/shells/bash/Makefile
diff -u pkgsrc/shells/bash/Makefile:1.99 pkgsrc/shells/bash/Makefile:1.100
--- pkgsrc/shells/bash/Makefile:1.99 Mon May 17 22:10:43 2021
+++ pkgsrc/shells/bash/Makefile Wed Jun 16 12:30:04 2021
@@ -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"
Home |
Main Index |
Thread Index |
Old Index