aboutsummaryrefslogtreecommitdiffstats
path: root/code/unix/extract_ver.pl
diff options
context:
space:
mode:
Diffstat (limited to 'code/unix/extract_ver.pl')
-rw-r--r--code/unix/extract_ver.pl9
1 files changed, 0 insertions, 9 deletions
diff --git a/code/unix/extract_ver.pl b/code/unix/extract_ver.pl
deleted file mode 100644
index 10db30a..0000000
--- a/code/unix/extract_ver.pl
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env perl
-# extracting version string from game/q_shared.h
-# hacked from Wolf build process
-
-# extract the wolf version from q_shared.h
-$line = `cat ../game/q_shared.h | grep Q3_VERSION`;
-chomp $line;
-$line =~ s/.*Q3\ (.*)\"/$1/;
-print "$line\n";