diff options
author | Johns <johns98@gmx.net> | 2011-12-11 19:43:37 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2011-12-11 19:43:37 +0100 |
commit | 12da237cc39c445d85606ee67419c0798a896891 (patch) | |
tree | 6b31dc2b17862cac5e4b608ffbaabab228f7206c /Makefile | |
parent | 24132171f6e7e60637b37a75c75b8e24929b5748 (diff) | |
download | vdr-plugin-softhddevice-12da237cc39c445d85606ee67419c0798a896891.tar.gz vdr-plugin-softhddevice-12da237cc39c445d85606ee67419c0798a896891.tar.bz2 |
Fix: indent broke VERSION extraction.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |