From 86950d4d98b2c55f4ea35c435cd1a3dca60dab1a Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 22 Apr 2006 10:08:41 +0200 Subject: Simplified the 'grep|awk|sed' command to retrieve the VDR/APIVERSION to a single 'sed' call --- PLUGINS/src/hello/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'PLUGINS/src/hello/Makefile') diff --git a/PLUGINS/src/hello/Makefile b/PLUGINS/src/hello/Makefile index 6f3dd4c7..2106cbf3 100644 --- a/PLUGINS/src/hello/Makefile +++ b/PLUGINS/src/hello/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.12 2006/04/16 09:03:50 kls Exp $ +# $Id: Makefile 1.13 2006/04/22 09:59:44 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,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: -- cgit v1.2.3