diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-01 05:45:04 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-01 05:45:04 +0000 |
commit | 5e595f7722f878585bf66cccd5f810506706c807 (patch) | |
tree | 7e9c83884918de6f2fb145850fab9fe93190694e /shells/bash | |
parent | 8d3b9237cec895fe49d3eff174a553c911728e26 (diff) |
Rather than have to manually list every patch version, use some automation
(courtesy of 'jot').
Obtained from: Vim port
Notes
Notes:
svn path=/head/; revision=171782
Diffstat (limited to 'shells/bash')
-rw-r--r-- | shells/bash/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile index db95143040bb..b4940ff7aa83 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -7,6 +7,7 @@ # PORTNAME= bash +PATCHLEVEL= 17 PORTVERSION= 3.1.${PATCHLEVEL:S/^0//g} CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GNU:S/$/:bash/} \ @@ -20,10 +21,9 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.cwru.edu/pub/%SUBDIR%/ PATCH_SITE_SUBDIR= ${PORTNAME}/${DISTNAME}-patches/ -.for patch in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 -PATCHFILES+= ${PORTNAME}${PORTVERSION:R:S/.//g}-0${patch} -PATCHLEVEL= ${patch} -.endfor +PATCHFILES!= /usr/bin/jot -s " " -w \ + ${PORTNAME}${PORTVERSION:R:S/.//g}-%03d \ + ${PATCHLEVEL} 1 ${PATCHLEVEL} MAINTAINER= obrien@FreeBSD.org COMMENT= The GNU Project's Bourne Again SHell |