diff options
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/makeindex | 4 | ||||
-rwxr-xr-x | Tools/portbuild/scripts/mkbindist | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/makeindex b/Tools/portbuild/scripts/makeindex index 206c41360d31..d2ec57fedf29 100755 --- a/Tools/portbuild/scripts/makeindex +++ b/Tools/portbuild/scripts/makeindex @@ -38,6 +38,10 @@ case "x$1" in branch=5 INDEXFILE=INDEX-5 ;; + x6) + branch=6 + INDEXFILE=INDEX-6 + ;; *) usage ;; diff --git a/Tools/portbuild/scripts/mkbindist b/Tools/portbuild/scripts/mkbindist index 2b4d4e4a9f55..5280e824c3d1 100755 --- a/Tools/portbuild/scripts/mkbindist +++ b/Tools/portbuild/scripts/mkbindist @@ -10,7 +10,7 @@ fi arch=$1 branch=$2 -if [ "x$branch" != x4 -a "x$branch" != x4-exp -a "x$branch" != x5 ]; then +if [ "x$branch" != x4 -a "x$branch" != x4-exp -a "x$branch" != x5 -a "x$branch" != x6 ]; then usage fi |