From 64a1148f89136a64d6e546fa055bac515fafa052 Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 25 Aug 2003 14:35:56 +0000 Subject: [PATCH] * Removed the useless util/getversion script. git-svn-id: svn://svn.zoy.org/elk/trunk@39 55e467fa-43c5-0310-a8a2-de718669efc6 --- util/README | 3 --- util/getversion | 5 ----- 2 files changed, 8 deletions(-) delete mode 100755 util/getversion diff --git a/util/README b/util/README index 8e42476..bd3bece 100644 --- a/util/README +++ b/util/README @@ -1,6 +1,3 @@ When porting Elk to a new architecture, you may want to compile and run alloca.c to check if your system's alloca() function is usable for Elk. See the leading comment in alloca.c. - -getversion is a trivial shell script to extract the Elk version number -from the file README. It is used by the build process. diff --git a/util/getversion b/util/getversion deleted file mode 100755 index 9930f68..0000000 --- a/util/getversion +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -if [ $# != 1 ]; then - echo Usage: $0 README; exit 1 -fi -exec grep "^This is release" $1 | awk '{print $4}'