From 12da237cc39c445d85606ee67419c0798a896891 Mon Sep 17 00:00:00 2001 From: Johns Date: Sun, 11 Dec 2011 19:43:37 +0100 Subject: [PATCH] Fix: indent broke VERSION extraction. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 63e2f03..83c1aa3 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ PLUGIN = softhddevice ### The version number of this plugin (taken from the main source file): -VERSION = $(shell grep 'static const char \* const VERSION *=' $(PLUGIN).cpp | awk '{ print $$8 }' | sed -e 's/[";]//g') +VERSION = $(shell grep 'static const char \*const VERSION *=' $(PLUGIN).cpp | awk '{ print $$7 }' | sed -e 's/[";]//g') ### The C++ compiler and options: