Fix: indent broke VERSION extraction.

This commit is contained in:
Johns 2011-12-11 19:43:37 +01:00
parent 24132171f6
commit 12da237cc3
1 changed files with 1 additions and 1 deletions

View File

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