diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-11 10:49:31 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-11 10:49:31 +0000 |
commit | 8374b933bcc5b177d902204c2c9aeccc690e8c03 (patch) | |
tree | 95c090ecb30a1c24af371977ccb24b57a8c991e7 /net-libs | |
parent | Version bump (diff) | |
download | gentoo-2-8374b933bcc5b177d902204c2c9aeccc690e8c03.tar.gz gentoo-2-8374b933bcc5b177d902204c2c9aeccc690e8c03.tar.bz2 gentoo-2-8374b933bcc5b177d902204c2c9aeccc690e8c03.zip |
Fix order of sed to prevent maintainer-mode being invoked
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libsoup/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libsoup/libsoup-2.26.1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-libs/libsoup/ChangeLog b/net-libs/libsoup/ChangeLog index 5dd9670ef9a0..9e616766712f 100644 --- a/net-libs/libsoup/ChangeLog +++ b/net-libs/libsoup/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libsoup # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.179 2009/05/11 10:39:11 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.180 2009/05/11 10:49:31 nirbheek Exp $ + + 11 May 2009; Nirbheek Chauhan <nirbheek@gentoo.org> libsoup-2.26.1.ebuild: + Fix order of sed to prevent maintainer-mode being invoked 11 May 2009; Nirbheek Chauhan <nirbheek@gentoo.org> libsoup-2.26.1.ebuild: Fix test to follow POSIX (for x86-fbsd) diff --git a/net-libs/libsoup/libsoup-2.26.1.ebuild b/net-libs/libsoup/libsoup-2.26.1.ebuild index 6bd177d9a6a1..28c3427aa57a 100644 --- a/net-libs/libsoup/libsoup-2.26.1.ebuild +++ b/net-libs/libsoup/libsoup-2.26.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.26.1.ebuild,v 1.4 2009/05/11 10:39:11 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.26.1.ebuild,v 1.5 2009/05/11 10:49:31 nirbheek Exp $ EAPI="2" @@ -44,5 +44,5 @@ src_prepare() { # Fix test to follow POSIX (for x86-fbsd) # No patch to prevent having to eautoreconf - sed -e 's/\(test.*\)==/\1=/g' -i configure configure.ac || die "sed failed" + sed -e 's/\(test.*\)==/\1=/g' -i configure.ac configure || die "sed failed" } |