From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PmMez-0004yS-0U for garchives@archives.gentoo.org; Mon, 07 Feb 2011 08:41:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 794B5E0851; Mon, 7 Feb 2011 08:41:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 30D3DE0851 for ; Mon, 7 Feb 2011 08:41:17 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 796AB1B4153 for ; Mon, 7 Feb 2011 08:41:16 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2123) id 2007420057; Mon, 7 Feb 2011 08:41:15 +0000 (UTC) From: "Mart Raudsepp (leio)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, leio@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-base/files: gst-plugins-base-0.10.31-fix-tag-test-linking.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: gst-plugins-base-0.10.31-fix-tag-test-linking.patch X-VCS-Directories: media-libs/gst-plugins-base/files X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp Content-Type: text/plain; charset=utf8 Message-Id: <20110207084115.2007420057@flycatcher.gentoo.org> Date: Mon, 7 Feb 2011 08:41:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 42583f62871d55895afc7dbe5f2e358c leio 11/02/07 08:41:15 Added: gst-plugins-base-0.10.31-fix-tag-test-linking.pat= ch Log: Fix tests when ran during upgrade from a previous version, bug 352944 =20 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64) Revision Changes Path 1.1 media-libs/gst-plugins-base/files/gst-plugins-base-0= .10.31-fix-tag-test-linking.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plu= gins-base/files/gst-plugins-base-0.10.31-fix-tag-test-linking.patch?rev=3D= 1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plu= gins-base/files/gst-plugins-base-0.10.31-fix-tag-test-linking.patch?rev=3D= 1.1&content-type=3Dtext/plain Index: gst-plugins-base-0.10.31-fix-tag-test-linking.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Fix tests on fresh upgrade, Gentoo bug #352944. Without this, the generated tests/check/libs/tag libtool has /usr/lib bef= ore local paths, because the library that comes from system gstreamer core pa= ckage is listed before the internal ones. --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -227,8 +227,8 @@ $(GST_BASE_CFLAGS) \ $(AM_CFLAGS) libs_tag_LDADD =3D \ - $(GST_BASE_LIBS) \ - $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la $(LDADD) + $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \ + $(GST_BASE_LIBS) $(LDADD) =20 libs_pbutils_CFLAGS =3D \ $(GST_PLUGINS_BASE_CFLAGS) \ --- a/tests/check/Makefile.in +++ b/tests/check/Makefile.in @@ -1003,8 +1003,8 @@ $(AM_CFLAGS) =20 libs_tag_LDADD =3D \ - $(GST_BASE_LIBS) \ - $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la $(LDADD) + $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \ + $(GST_BASE_LIBS) $(LDADD) =20 libs_pbutils_CFLAGS =3D \ $(GST_PLUGINS_BASE_CFLAGS) \