aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-09-05 19:22:04 +0200
committerHarald Welte <laforge@gnumonks.org>2017-09-05 22:43:45 +0200
commit9fc286883d4a5e49889b1a2cc701509a3573317a (patch)
tree7fbc24308e084c254362319d9b59842e84c5a397
parent017c52378cd4d6035f29bfcadbd10c95856ee0e0 (diff)
remove bogus 'version' script
-rwxr-xr-xversion24
1 files changed, 0 insertions, 24 deletions
diff --git a/version b/version
deleted file mode 100755
index ba4d6a5..0000000
--- a/version
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-# Little shell script to grab current version number from configure.in
-#
-# $Id: version,v 1.3 2003/01/28 22:39:30 jjako Exp $
-
-VER=`grep AC_INIT configure.in | awk -F'[(),]' '{print $3}'`
-if [ "$1" == "-VERSION" ]
-then
- echo $VER | awk -F'.' '{print $1}'
- exit
-fi
-if [ "$1" == "-PATCHLEVEL" ]
-then
- echo $VER | awk -F'.' '{print $2}'
- exit
-fi
-if [ "$1" == "-SUBLEVEL" ]
-then
- echo $VER | awk -F'.' '{print $3}'
- exit
-fi
-echo $VER
-exit