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 --- newplugin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newplugin') diff --git a/newplugin b/newplugin index 2a7cac2a..f54db76e 100755 --- a/newplugin +++ b/newplugin @@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 1.26 2006/04/17 09:49:13 kls Exp $ +# $Id: newplugin 1.27 2006/04/22 10:04:10 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin \n"; @@ -85,7 +85,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 VDRVERSION/ { s/^.*"\(.*\)".*\$\$/\\1/; p }' \$(VDRDIR)/config.h) ### The name of the distribution archive: -- cgit v1.2.3