9
0
Fork 0

remove bogus 'version' script

Change-Id: I3977cd4777aa4cf37a1d6e21eba0bc37d61421f3
This commit is contained in:
Harald Welte 2017-09-05 19:22:04 +02:00
parent 017c52378c
commit 9fc286883d
1 changed files with 0 additions and 24 deletions

24
version
View File

@ -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