summaryrefslogtreecommitdiff
path: root/shells/bash/Makefile
diff options
context:
space:
mode:
authorhasso <hasso>2009-06-05 23:32:00 +0000
committerhasso <hasso>2009-06-05 23:32:00 +0000
commit1fb53e0bc2f3716635f72b0619967de9121c7224 (patch)
tree67ce17437d375520f162c77f0cdecd727fe4231a /shells/bash/Makefile
parenta461a576c8d082f41a1ee4e94c07833cce4f51d2 (diff)
downloadpkgsrc-1fb53e0bc2f3716635f72b0619967de9121c7224.tar.gz
Update to 4.0.24. Following bugs were fixed since 4.0.10:
When using the ** globbing operator, bash will incorrectly add an extra directory name when the preceding directory name ends with `*' or an empty string when there is no preceding directory name. If the prompt length exactly matches the screen width, and the prompt ends with invisible characters, readline positions the cursor incorrectly. When parsing case statements in command substitutions, the shell did not note that a newline is a shell metacharacter and can legally be followed by a reserved word (e.g., `esac'). When not in a locale supporting multibyte characters, readline will occasionally not erase characters between the cursor position and the end of the line when killing text backwards. If a SIGWINCH arrives while bash is performing redisplay, multi-line prompts are displayed incorrectly due to the display code being called recursively. Using an external command as part of the DEBUG trap when job control is enabled causes pipelines to misbehave. The problem has to do with process groups assigned to the pipeline and terminal. A missing include file results in an empty function definition and a no-op when checking whether or not the window size has changed. Adding a null line to a here-document (e.g., by hitting EOF) causes the shell to dump core attempting to dereference the NULL pointer. There are several problems with the handling of $LINENO in an ERR trap. Deferring handling of signals which should cause the shell to terminate until it is "safe" to run the handler functions does not work for some terminating signals. When the fc builtin is run in a command substitution from a shell with history enabled, it does not correctly calculate the command on which to operate. Though references to $@ when there are no positional parameters will now cause the shell to exit if the `errexit' option has been enabled, constructs such as ${@:-foo} should not cause an exit. A case statement using the ;& pattern terminator followed immediately by "esac" caused a core dump due to a null pointer dereference. When using the new |& operator following a simple command with a redirection, the redirection of stderr through the pipe was not performed under certain circumstances.
Diffstat (limited to 'shells/bash/Makefile')
-rw-r--r--shells/bash/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile
index 86bd1d1c17e..1502d8921fe 100644
--- a/shells/bash/Makefile
+++ b/shells/bash/Makefile
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.44 2009/05/20 00:58:27 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2009/06/05 23:32:00 hasso Exp $
BASH_VERSION= 4.0
-BASH_PATCHLEVEL= 10
+BASH_PATCHLEVEL= 24
DISTNAME= bash-${BASH_VERSION}
PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL}
-PKGREVISION= 1
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:=bash/} \
ftp://ftp.cwru.edu/pub/bash/
@@ -13,6 +12,9 @@ MASTER_SITES= ${MASTER_SITE_GNU:=bash/} \
PATCH_SITES= ${MASTER_SITES:=bash-4.0-patches/}
PATCHFILES+= bash40-001 bash40-002 bash40-003 bash40-004 bash40-005
PATCHFILES+= bash40-006 bash40-007 bash40-008 bash40-009 bash40-010
+PATCHFILES+= bash40-011 bash40-012 bash40-013 bash40-014 bash40-015
+PATCHFILES+= bash40-016 bash40-017 bash40-018 bash40-019 bash40-020
+PATCHFILES+= bash40-021 bash40-022 bash40-023 bash40-024
MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://www.gnu.org/software/bash/bash.html