diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-10-14 13:24:20 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-10-14 13:24:20 +0000 |
commit | 875ebd31e7b0c845a482d12d49e1a601a8fcfdd5 (patch) | |
tree | aee72473670eb41fcdd9149216a8d8a827130e5e /shells/bash/files/patch-support::mkversion.sh | |
parent | Update to 1.08 (diff) |
- better reflect `bash --version' in PORTVERSION
- new shopt colonbreakswords
- fix default PATH
Diffstat (limited to 'shells/bash/files/patch-support::mkversion.sh')
-rw-r--r-- | shells/bash/files/patch-support::mkversion.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/shells/bash/files/patch-support::mkversion.sh b/shells/bash/files/patch-support::mkversion.sh new file mode 100644 index 000000000000..c7c4d609d230 --- /dev/null +++ b/shells/bash/files/patch-support::mkversion.sh @@ -0,0 +1,11 @@ +--- support/mkversion.sh.orig Tue Oct 12 11:20:53 2004 ++++ support/mkversion.sh Tue Oct 12 11:21:10 2004 +@@ -67,7 +67,7 @@ + # increment the build version if that's what's required + + if [ -n "$inc_build" ]; then +- build_ver=`expr $build_ver + 1` ++ build_ver=`expr 1 + $build_ver` + fi + + # what's the patch level? |