diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-22 10:08:41 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-22 10:08:41 +0200 |
commit | 86950d4d98b2c55f4ea35c435cd1a3dca60dab1a (patch) | |
tree | f48af6ac4b6d3eacef1b5dfd9e3f15ade021671a /PLUGINS/src/servicedemo | |
parent | ea122312dd16a42f9c81574567f3cd1ab0bf47dd (diff) | |
download | vdr-86950d4d98b2c55f4ea35c435cd1a3dca60dab1a.tar.gz vdr-86950d4d98b2c55f4ea35c435cd1a3dca60dab1a.tar.bz2 |
Simplified the 'grep|awk|sed' command to retrieve the VDR/APIVERSION to a single 'sed' call
Diffstat (limited to 'PLUGINS/src/servicedemo')
-rw-r--r-- | PLUGINS/src/servicedemo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PLUGINS/src/servicedemo/Makefile b/PLUGINS/src/servicedemo/Makefile index c76b871f..31e57a89 100644 --- a/PLUGINS/src/servicedemo/Makefile +++ b/PLUGINS/src/servicedemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.4 2006/04/16 09:03:59 kls Exp $ +# $Id: Makefile 1.5 2006/04/22 09:59:55 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -31,7 +31,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') +APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) ### The name of the distribution archive: |