From a9674f2f4bec2f365282f5c9bc689d20733cbc23 Mon Sep 17 00:00:00 2001 From: nwhitehorn Date: Wed, 12 Oct 2011 15:34:25 +0000 Subject: Missed file in r225937 (sysinstall removal). --- release/svnbranch.awk | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 release/svnbranch.awk (limited to 'release') diff --git a/release/svnbranch.awk b/release/svnbranch.awk deleted file mode 100644 index 0fc8620..0000000 --- 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" -} -- cgit v1.1