mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
875ebd31e7
- new shopt colonbreakswords - fix default PATH
12 lines
313 B
Bash
12 lines
313 B
Bash
--- 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?
|