Missed file in r225937 (sysinstall removal).

This commit is contained in:
Nathan Whitehorn 2011-10-12 15:34:25 +00:00
parent 5d0d779b0e
commit 4a383558ce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226305

View File

@ -1,28 +0,0 @@
# $FreeBSD$
BEGIN {
FS = "_"
}
/RELENG_.*_RELEASE/ {
if (NF == 5) {
printf "release/%s.%s.%s", $2, $3, $4
exit
}
}
/RELENG_.*/ {
if (NF == 3) {
printf "releng/%s.%s", $2, $3
exit
}
if (NF == 2) {
printf "stable/%s", $2
exit
}
}
// {
printf "unknown_branch"
}