From patchwork Sun Apr 23 15:09:19 2006 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Huelswitt X-Patchwork-Id: 12274 Received: from wp012.webpack.hosteurope.de ([80.237.132.19]) by www.linuxtv.org with esmtp (Exim 4.50) id 1FXgEf-00066Y-9O for vdr@linuxtv.org; Sun, 23 Apr 2006 17:10:53 +0200 Received: by wp012.webpack.hosteurope.de running Exim 4.43 using esmtpsa (TLSv1:DES-CBC3-SHA:168) from ip4.35.1411p-cud12k-02.ish.de ([62.143.35.4] helo=video.local.muempf.de) id 1FXgEQ-0001dg-Pa; Sun, 23 Apr 2006 17:10:38 +0200 Received: from video.local.muempf.de (localhost [127.0.0.1]) by video.local.muempf.de (8.12.6/8.12.6/SuSE Linux 0.6) with ESMTP id k3NF9JgD003473 for ; Sun, 23 Apr 2006 17:09:19 +0200 Received: (from news@localhost) by video.local.muempf.de (8.12.6/8.12.6/Submit) id k3NF9JnT003472 for vdr@linuxtv.org; Sun, 23 Apr 2006 17:09:19 +0200 To: vdr@linuxtv.org Path: not-for-mail From: s.huelswitt@gmx.de (Stefan Huelswitt) Newsgroups: local.linux.vdr Subject: Re: [vdr] [ANNOUNCE] VDR developer version 1.3.48 Date: Sun, 23 Apr 2006 15:09:19 +0000 (UTC) Organization: Home, sweet home Lines: 32 Sender: nathan@gmx.de Message-ID: References: <444B8B93.8000203@cadsoft.de> NNTP-Posting-Host: master.local.muempf.de Mime-Version: 1.0 X-Trace: video.local.muempf.de 1145804959 31956 192.168.1.1 (23 Apr 2006 15:09:19 GMT) X-Complaints-To: s.huelswitt@gmx.de NNTP-Posting-Date: Sun, 23 Apr 2006 15:09:19 +0000 (UTC) X-Newsreader: knews 1.0b.1 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Apr 2006 15:10:53 -0000 Status: O X-Status: X-Keywords: X-UID: 9018 On 23 Apr 2006 Klaus Schmidinger wrote: > - Added an error message about plugins that don't honor APIVERSION in their Makefile > (based on a suggestion by Udo Richter). There is a small bug: #make plugins /bin/sh: line 1: @noapiv=: command not found Plugin mp3: make[1]: Entering directory `/usr/local/source/VDR/vdr-1.3.48/PLUGINS/src/mp3-unstable' [...] Fix: Regards. --- Makefile.orig 2006-04-23 17:04:21.000000000 +0200 +++ Makefile 2006-04-23 17:06:07.000000000 +0200 @@ -176,7 +176,7 @@ plugins: include-dir @failed="";\ - @noapiv="";\ + noapiv="";\ for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do\ echo "Plugin $$i:";\ if ! grep -q "\$$(LIBDIR)/.*\$$(APIVERSION)" "$(PLUGINDIR)/src/$$i/Makefile" ; then\