diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-07-04 19:42:16 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-07-04 19:42:16 +0000 |
commit | bc37dafdf255f73d0f03ef91623c76550c69b9b3 (patch) | |
tree | 9ee0a6601a6c9522858f5ae2a4782c995798a0c2 /dev-libs | |
parent | Add custom-cflags per Calchan for mozilla products (diff) | |
download | gentoo-2-bc37dafdf255f73d0f03ef91623c76550c69b9b3.tar.gz gentoo-2-bc37dafdf255f73d0f03ef91623c76550c69b9b3.tar.bz2 gentoo-2-bc37dafdf255f73d0f03ef91623c76550c69b9b3.zip |
implicit . argument to find is a GNUism that fails with BSDs find; the die call following it made glib impossile to build on G/FreeBSD
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/glib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/glib/glib-2.28.8.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-libs/glib/ChangeLog b/dev-libs/glib/ChangeLog index d4b9873c87bc..30975e7f2585 100644 --- a/dev-libs/glib/ChangeLog +++ b/dev-libs/glib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/glib # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.474 2011/07/04 10:51:44 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.475 2011/07/04 19:42:16 aballier Exp $ + + 04 Jul 2011; Alexis Ballier <aballier@gentoo.org> glib-2.28.8.ebuild: + implicit . argument to find is a GNUism that fails with BSDs find; the die + call following it made glib impossile to build on G/FreeBSD 04 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild: Fix warning about skipped tests being shown even when tests are disabled by diff --git a/dev-libs/glib/glib-2.28.8.ebuild b/dev-libs/glib/glib-2.28.8.ebuild index b1e44ded1b29..76403e4da3a7 100644 --- a/dev-libs/glib/glib-2.28.8.ebuild +++ b/dev-libs/glib/glib-2.28.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.6 2011/07/04 10:51:44 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.7 2011/07/04 19:42:16 aballier Exp $ EAPI="3" GNOME_TARBALL_SUFFIX="xz" @@ -77,7 +77,7 @@ src_prepare() { if ! use test; then # don't waste time building tests - sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find -name Makefile.am -o -name Makefile.in) || die + sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find . -name Makefile.am -o -name Makefile.in) || die else # Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629 if ! has_version dev-util/desktop-file-utils ; then |