- update to patchlevel 15

This commit is contained in:
Oliver Eikemeier 2004-11-02 10:24:50 +00:00
parent 1deab13adb
commit f0c4bac25e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120637
3 changed files with 7 additions and 19 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= bash
PORTVERSION= 3.0.13
PORTVERSION= 3.0.${PATCHLEVEL}
PORTREVISION= 0
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:S/$/:bash/} \
@ -20,8 +20,9 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
PATCH_SITES= ftp://ftp.cwru.edu/pub/%SUBDIR%/:bash
PATCH_SITE_SUBDIR= ${PORTNAME}/${DISTNAME}-patches/:bash
.for patch in 01 02 03 04 05 06 07 08 09 10 11 12 13
.for patch in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
PATCHFILES+= ${PORTNAME}${PORTVERSION:R:S/.//g}-0${patch}:bash
PATCHLEVEL= ${patch}
.endfor
MAINTAINER= eik@FreeBSD.org

View file

@ -26,4 +26,8 @@ MD5 (bash/bash30-012) = 2753d4de0b57fc8890488463c5e86d3f
SIZE (bash/bash30-012) = 1395
MD5 (bash/bash30-013) = 5de5be8289764c11a3206b06351d81a6
SIZE (bash/bash30-013) = 1963
MD5 (bash/bash30-014) = d4b531e02b6a0287cffdbf527134ca29
SIZE (bash/bash30-014) = 1165
MD5 (bash/bash30-015) = adc1ab952b42ed0c0f53d1c308a32101
SIZE (bash/bash30-015) = 1480
MD5 (bash/FAQ) = IGNORE

View file

@ -1,17 +0,0 @@
#
# Fix brace expansion following quoted text
#
# http://lists.gnu.org/archive/html/bug-bash/2004-09/msg00255.html
#
--- braces.c.orig Wed Sep 8 11:07:53 2004
+++ braces.c Fri Sep 17 18:42:36 2004
@@ -402,7 +402,8 @@
{
pass_next = 1;
i++;
- level++;
+ if (quoted == 0)
+ level++;
continue;
}
#endif