summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorNathan Whitehorn <nwhitehorn@FreeBSD.org>2011-10-12 15:34:25 +0000
committerNathan Whitehorn <nwhitehorn@FreeBSD.org>2011-10-12 15:34:25 +0000
commit4a383558ce39d57013c260abe4bf693a4457f52c (patch)
tree3fc3694fc77a0752e0bfe201ecb26e4a1d34b47a /release
parent5d0d779b0eb458d706f399978fd65130bebf3d30 (diff)
downloadsrc-test2-4a383558ce39d57013c260abe4bf693a4457f52c.tar.gz
src-test2-4a383558ce39d57013c260abe4bf693a4457f52c.zip
Notes
Diffstat (limited to 'release')
-rw-r--r--release/svnbranch.awk28
1 files changed, 0 insertions, 28 deletions
diff --git a/release/svnbranch.awk b/release/svnbranch.awk
deleted file mode 100644
index 0fc86200c043..000000000000
--- a/release/svnbranch.awk
+++ /dev/null
@@ -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"
-}