diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-02-21 23:01:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-21 23:01:33 +0000 |
commit | a4e54243ab2901fc331a8b62c8a9f575c39caa29 (patch) | |
tree | 942208a19527ea38e5e12cf7164166a261c1516d /app-shells | |
parent | Add fix from upstream for building with newer binutils #258072. (diff) | |
download | gentoo-2-a4e54243ab2901fc331a8b62c8a9f575c39caa29.tar.gz gentoo-2-a4e54243ab2901fc331a8b62c8a9f575c39caa29.tar.bz2 gentoo-2-a4e54243ab2901fc331a8b62c8a9f575c39caa29.zip |
fix net-redirections flags
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash/bash-3.2_p48-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-shells/bash/ChangeLog b/app-shells/bash/ChangeLog index 55766817cac3..594327dbf452 100644 --- a/app-shells/bash/ChangeLog +++ b/app-shells/bash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.194 2009/02/09 01:07:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.195 2009/02/21 23:01:33 vapier Exp $ + + 21 Feb 2009; Mike Frysinger <vapier@gentoo.org> bash-3.2_p48-r1.ebuild: + Fix net redirection flags -- it's use_enable, not use_with. *bash-3.2_p48-r1 (09 Feb 2009) diff --git a/app-shells/bash/bash-3.2_p48-r1.ebuild b/app-shells/bash/bash-3.2_p48-r1.ebuild index 81feb4c1dcec..fd009dbd5c34 100644 --- a/app-shells/bash/bash-3.2_p48-r1.ebuild +++ b/app-shells/bash/bash-3.2_p48-r1.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/app-shells/bash/bash-3.2_p48-r1.ebuild,v 1.1 2009/02/09 01:07:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild,v 1.2 2009/02/21 23:01:33 vapier Exp $ EAPI=1 @@ -124,7 +124,7 @@ src_compile() { use plugins && append-ldflags -Wl,-rpath,/usr/$(get_libdir)/bash econf \ $(use_with afs) \ - $(use_with net net-redirections) \ + $(use_enable net net-redirections) \ --disable-profiling \ --without-gnu-malloc \ ${myconf} || die |