From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 39924E00B52; Wed, 18 Nov 2015 06:50:41 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail.chez-thomas.org (mail.mlbassoc.com [65.100.170.105]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 297A2E00B19 for ; Wed, 18 Nov 2015 06:50:35 -0800 (PST) Received: by mail.chez-thomas.org (Postfix, from userid 1998) id 110EAF8119A; Wed, 18 Nov 2015 07:50:33 -0700 (MST) Received: from [192.168.1.114] (zeus [192.168.1.114]) by mail.chez-thomas.org (Postfix) with ESMTP id 8D400F8119A; Wed, 18 Nov 2015 07:50:31 -0700 (MST) To: "meta-freescale@yoctoproject.org" From: Gary Thomas Message-ID: <564C9045.7080008@mlbassoc.com> Date: Wed, 18 Nov 2015 07:50:45 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Subject: [meta-fsl-arm] gstreamer1.0-plugins-bad failure X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2015 14:50:41 -0000 X-Groupsio-MsgNum: 16668 Content-Type: multipart/mixed; boundary="------------040805060203000200090708" --------------040805060203000200090708 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit The platform specific patch for gstreamer1.0-plugins-bad no longer applies with the current OE-core master (after update to gstreamer-1.6.1). ERROR: Command Error: exit status: 1 Output: Applying patch 0001-PATCH-install-gstaggregator-and-gstvideoaggregator-h.patch patching file gst-libs/gst/base/Makefile.am patching file gst-libs/gst/video/Makefile.am Hunk #1 FAILED at 19. 1 out of 1 hunk FAILED -- rejects in file gst-libs/gst/video/Makefile.am Patch 0001-PATCH-install-gstaggregator-and-gstvideoaggregator-h.patch does not apply (enforce with -f) ERROR: Function failed: patch_do_patch ERROR: Logfile of failure stored in: /local/p0382-cutting-edge_2014-11-21/tmp/work/cortexa9hf-vfp-neon-mx6qdl-amltd-linux-gnueabi/gstreamer1.0-plugins-bad/1.6.1-r0/temp/log.do_patch.24379 ERROR: Task 1 (/local/poky-cutting-edge/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.6.1.bb, do_patch) failed with exit code '1' I adjusted the patch but I'm not comfortable replacing the boilerplate as it's attributed to Mingke Wang Perhaps someone at Freescale can fix this properly? -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ --------------040805060203000200090708 Content-Type: text/x-patch; name="0001-PATCH-install-gstaggregator-and-gstvideoaggregator-h.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-PATCH-install-gstaggregator-and-gstvideoaggregator-h.pa"; filename*1="tch" Index: gst-plugins-bad-1.6.1/gst-libs/gst/base/Makefile.am =================================================================== --- gst-plugins-bad-1.6.1.orig/gst-libs/gst/base/Makefile.am +++ gst-plugins-bad-1.6.1/gst-libs/gst/base/Makefile.am @@ -6,11 +6,12 @@ libgstbadbase_@GST_API_VERSION@_la_SOURC libgstbadbase_@GST_API_VERSION@_la_CFLAGS = $(GST_CFLAGS) \ -DGST_USE_UNSTABLE_API +libgstbadbase_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/base +libgstbadbase_@GST_API_VERSION@include_HEADERS = \ + gstaggregator.h + libgstbadbase_@GST_API_VERSION@_la_LIBADD = $(GST_LIBS) libgstbadbase_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS) -noinst_HEADERS = \ - gstaggregator.h - EXTRA_DIST = Index: gst-plugins-bad-1.6.1/gst-libs/gst/video/Makefile.am =================================================================== --- gst-plugins-bad-1.6.1.orig/gst-libs/gst/video/Makefile.am +++ gst-plugins-bad-1.6.1/gst-libs/gst/video/Makefile.am @@ -16,6 +16,11 @@ libgstbadvideo_@GST_API_VERSION@_la_CFLA $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_BASE_CFLAGS) +libgstbadvideo_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/video +libgstbadvideo_@GST_API_VERSION@include_HEADERS = \ + gstvideoaggregatorpad.h \ + gstvideoaggregator.h + libgstbadvideo_@GST_API_VERSION@_la_LIBADD = \ $(top_builddir)/gst-libs/gst/base/libgstbadbase-$(GST_API_VERSION).la \ $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \ --------------040805060203000200090708--