diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-03-25 22:53:23 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-03-25 22:53:23 +0100 |
commit | a1ecb8915815959f76d9360dafc1733edca78567 (patch) | |
tree | 8b33cb217af558ba04c2a13fc7fdff375194ebd4 | |
parent | 5485bc66d06d71078a31c99593be365334a6693c (diff) | |
download | vdr-plugin-epgsearch-a1ecb8915815959f76d9360dafc1733edca78567.tar.gz vdr-plugin-epgsearch-a1ecb8915815959f76d9360dafc1733edca78567.tar.bz2 |
fixed extracting the version from epgsearch.c in Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ PLUGIN4 = quickepgsearch ### The version number of this plugin (taken from the main source file): -VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') +VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') ### The directory environment: |