summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2013-10-17 14:13:30 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2013-10-17 16:10:36 +0900
commit5e8a67a32bc5c770417030829ab39d8ef2214f8b (patch)
treedd648654a074379a34ef08a05a7b4db9663d26f8
parent2e8b582fa49ad06537bcd04a70723d1d0ff2b6ad (diff)
Remove GEN-DOC-VERSION from the Documentation folder
This was used by the asciidoc build, and is no longer needed, so remove it. Change-Id: Iccd9cba1b0a97374f1154274626e335ec3702388
-rwxr-xr-xDocumentation/GEN-DOC-VERSION19
1 files changed, 0 insertions, 19 deletions
diff --git a/Documentation/GEN-DOC-VERSION b/Documentation/GEN-DOC-VERSION
deleted file mode 100755
index 973bfa8d27..0000000000
--- a/Documentation/GEN-DOC-VERSION
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-V=$(git describe HEAD)
-
-case "$V" in
-'')
- echo >&2 "fatal: no annotated tags, cannot determine version"
- exit 1
- ;;
-
-*-g*)
- echo >&2 "fatal: snapshot $V, cannot determine version"
- exit 1
- ;;
-
-v*)
- echo "$V" | perl -lne 'print $1 if /^v(\d+\.\d+(?:\.\d+)?)/'
- ;;
-esac