From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [206.46.173.1] (helo=vms173001pub.verizon.net) by linuxtogo.org with esmtp (Exim 4.69) (envelope-from ) id 1MJEaA-0000QZ-0a for openembedded-devel@lists.openembedded.org; Wed, 24 Jun 2009 00:35:14 +0200 Received: from gandalf.denix.org ([71.251.63.232]) by vms173001.mailsrvcs.net (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 32bit)) with ESMTPA id <0KLP004SFQ7GXXP6@vms173001.mailsrvcs.net> for openembedded-devel@lists.openembedded.org; Tue, 23 Jun 2009 17:23:46 -0500 (CDT) Received: by gandalf.denix.org (Postfix, from userid 1000) id 4F9A114AF5F; Tue, 23 Jun 2009 18:23:40 -0400 (EDT) Date: Tue, 23 Jun 2009 18:23:40 -0400 From: Denys Dmytriyenko To: openembedded-devel@lists.openembedded.org Message-id: <20090623222340.GC32082@denix.org> References: <200906230940.05121.marcin@juszkiewicz.com.pl> <1245747417-11163-2-git-send-email-marcin@juszkiewicz.com.pl> MIME-version: 1.0 In-reply-to: User-Agent: Mutt/1.5.16 (2007-06-09) Subject: Re: [STABLE][PATCH 053/125] mpeg-encode: Make this aware of LDFLAGS, fixes QA GNU_HASH issue X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 22:35:14 -0000 Content-type: text/plain; charset=us-ascii Content-disposition: inline On Tue, Jun 23, 2009 at 11:13:44AM +0200, Koen Kooi wrote: > On 23-06-09 10:56, Marcin Juszkiewicz wrote: >> From: Tim 'timtim' Ellis >> >> >> Signed-off-by: Marcin Juszkiewicz > > Acked-by: Koen Kooi Acked-by: Denys Dmytriyenko >> --- >> recipes/mpeg-encode/files/fixup.patch | 14 ++++++++------ >> recipes/mpeg-encode/mpeg-encode_1.5b.bb | 2 +- >> 2 files changed, 9 insertions(+), 7 deletions(-) >> >> diff --git a/recipes/mpeg-encode/files/fixup.patch >> b/recipes/mpeg-encode/files/fixup.patch >> index eda0920..a40c1bf 100644 >> --- a/recipes/mpeg-encode/files/fixup.patch >> +++ b/recipes/mpeg-encode/files/fixup.patch >> @@ -1,6 +1,6 @@ >> diff -urN mpeg_encode.old/headers/libpnmrw.h >> mpeg_encode/headers/libpnmrw.h >> --- mpeg_encode.old/headers/libpnmrw.h 1995-08-09 16:17:41.000000000 >> +0100 >> -+++ mpeg_encode/headers/libpnmrw.h 2009-03-24 23:24:25.000000000 +0000 >> ++++ mpeg_encode/headers/libpnmrw.h 2009-05-16 17:38:24.000000000 +0100 >> @@ -13,18 +13,7 @@ >> #ifndef _PNMRW_H_ >> #define _PNMRW_H_ >> @@ -22,7 +22,7 @@ diff -urN mpeg_encode.old/headers/libpnmrw.h >> mpeg_encode/headers/libpnmrw.h >> >> diff -urN mpeg_encode.old/jpeg/Makefile mpeg_encode/jpeg/Makefile >> --- mpeg_encode.old/jpeg/Makefile 1995-08-05 00:27:00.000000000 +0100 >> -+++ mpeg_encode/jpeg/Makefile 2009-03-24 23:24:25.000000000 +0000 >> ++++ mpeg_encode/jpeg/Makefile 2009-05-16 17:38:24.000000000 +0100 >> @@ -20,9 +20,6 @@ >> manprefix = >> manext = 1 >> @@ -56,7 +56,7 @@ diff -urN mpeg_encode.old/jpeg/Makefile >> mpeg_encode/jpeg/Makefile >> cjpeg: $(COBJECTS) libjpeg.a >> diff -urN mpeg_encode.old/libpnmrw.c mpeg_encode/libpnmrw.c >> --- mpeg_encode.old/libpnmrw.c 1995-08-16 23:24:26.000000000 +0100 >> -+++ mpeg_encode/libpnmrw.c 2009-03-24 23:24:25.000000000 +0000 >> ++++ mpeg_encode/libpnmrw.c 2009-05-16 17:38:24.000000000 +0100 >> @@ -28,6 +28,7 @@ >> #endif >> >> @@ -76,12 +76,14 @@ diff -urN mpeg_encode.old/libpnmrw.c >> mpeg_encode/libpnmrw.c >> e = sys_errlist[errno]; >> diff -urN mpeg_encode.old/Makefile mpeg_encode/Makefile >> --- mpeg_encode.old/Makefile 1995-08-16 23:16:56.000000000 +0100 >> -+++ mpeg_encode/Makefile 2009-03-24 23:24:47.000000000 +0000 >> -@@ -204,7 +204,7 @@ >> ++++ mpeg_encode/Makefile 2009-05-16 18:56:22.000000000 +0100 >> +@@ -203,8 +203,8 @@ >> + ############ >> >> mpeg_encode: $(MP_ALL_OBJS) $(JPEG_LIB) >> - $(PURIFY) $(CC) $(CFLAGS) -o $@ $(MP_ALL_OBJS) $(LIBDIRS) $(LIBS) >> +- $(PURIFY) $(CC) $(CFLAGS) -o $@ $(MP_ALL_OBJS) $(LIBDIRS) $(LIBS) >> - strip mpeg_encode >> ++ $(PURIFY) $(CC) $(CFLAGS) -o $@ $(MP_ALL_OBJS) $(LIBDIRS) $(LIBS) >> $(LDFLAGS) >> + $(STRIP) mpeg_encode >> >> profile: $(MP_ALL_OBJS) >> diff --git a/recipes/mpeg-encode/mpeg-encode_1.5b.bb >> b/recipes/mpeg-encode/mpeg-encode_1.5b.bb >> index d32322a..0f851b1 100644 >> --- a/recipes/mpeg-encode/mpeg-encode_1.5b.bb >> +++ b/recipes/mpeg-encode/mpeg-encode_1.5b.bb >> @@ -1,7 +1,7 @@ >> DESCRIPTION = "The Berkeley MPEG Encoder." >> HOMEPAGE = >> "http://bmrc.berkeley.edu/frame/research/mpeg/mpeg_encode.html" >> SECTION = "multimedia" >> -PR = "r1" >> +PR = "r2" >> >> SRC_URI = >> "http://bmrc.berkeley.edu/ftp/pub/multimedia/mpeg/encode/mpeg_encode-${PV}-src.tar.gz >> \ >> file://fixup.patch;patch=1" > > > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel