diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-24 17:53:19 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-24 17:53:19 +0200 |
commit | bf4f8e0da38b757dae9a8fef4e17cb23094d6e26 (patch) | |
tree | 7f014108347cc454d5cde6fd22e97b50015090ce /HISTORY | |
parent | c4d90dff6b201101fe54b96ec5b127db1ce818af (diff) | |
download | vdr-bf4f8e0da38b757dae9a8fef4e17cb23094d6e26.tar.gz vdr-bf4f8e0da38b757dae9a8fef4e17cb23094d6e26.tar.bz2 |
Fixed extracting APIVERSION to work with older versions of 'sed'; Fixed broken APIVERSION extraction line in 'newplugin'
Diffstat (limited to 'HISTORY')
-rw-r--r-- | HISTORY | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4580,7 +4580,7 @@ Video Disk Recorder Revision History +### The version number of VDR's plugin API (taken from VDR's "config.h"): -VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') - +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: @@ -4652,3 +4652,7 @@ Video Disk Recorder Revision History 2006-04-24: Version 1.4.0 - Fixed initializing 'noapiv' in the Makefile (reported by Ronny Kornexl). +- Fixed extracting APIVERSION to work with older versions of 'sed' (reported by + Oliver Endriss; thanks also to Udo Richter for a shorter version of the 'sed' + expression). +- Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss). |