summaryrefslogtreecommitdiff
path: root/pptpd-1.3.3/version
diff options
context:
space:
mode:
Diffstat (limited to 'pptpd-1.3.3/version')
-rwxr-xr-xpptpd-1.3.3/version28
1 files changed, 0 insertions, 28 deletions
diff --git a/pptpd-1.3.3/version b/pptpd-1.3.3/version
deleted file mode 100755
index 9020996..0000000
--- a/pptpd-1.3.3/version
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# Grab current version number from configure.in and emit on stdout
-#
-# $Id: version,v 1.1.1.1 2002/06/21 08:52:02 fenix_nl Exp $
-
-VER=`grep AM_INIT_AUTOMAKE 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