summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-08-28 15:33:17 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-08-28 15:33:17 +0000
commit40e4d382b044c39293fd249d86b31c345d317901 (patch)
treee83db0f8910487b879ff131e23af0d120b3f307d /sys-freebsd
parentpegged virtual/jpeg at slot 0 in mozconfig-3.eclass (diff)
downloadgentoo-2-40e4d382b044c39293fd249d86b31c345d317901.tar.gz
gentoo-2-40e4d382b044c39293fd249d86b31c345d317901.tar.bz2
gentoo-2-40e4d382b044c39293fd249d86b31c345d317901.zip
do not move fuser to /bin, bug #469454 by Yuta SATOH
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-freebsd')
-rw-r--r--sys-freebsd/freebsd-ubin/ChangeLog6
-rw-r--r--sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild4
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-freebsd/freebsd-ubin/ChangeLog b/sys-freebsd/freebsd-ubin/ChangeLog
index 3454bf726063..26dc6ead6a85 100644
--- a/sys-freebsd/freebsd-ubin/ChangeLog
+++ b/sys-freebsd/freebsd-ubin/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-freebsd/freebsd-ubin
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.96 2013/08/26 20:45:55 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.97 2013/08/28 15:33:17 aballier Exp $
+
+ 28 Aug 2013; Alexis Ballier <aballier@gentoo.org>
+ freebsd-ubin-9.2_rc3.ebuild:
+ do not move fuser to /bin, bug #469454 by Yuta SATOH
*freebsd-ubin-9.2_rc3 (26 Aug 2013)
diff --git a/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild b/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild
index 465b37a3f4da..8206dea8e68e 100644
--- a/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild
+++ b/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild,v 1.1 2013/08/26 20:45:55 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild,v 1.2 2013/08/28 15:33:17 aballier Exp $
EAPI=5
@@ -139,7 +139,7 @@ src_install() {
# baselayout requires these in /bin
dodir /bin
- for bin in sed printf fuser; do
+ for bin in sed printf ; do
mv "${D}/usr/bin/${bin}" "${D}/bin/" || die "mv ${bin} failed"
dosym /bin/${bin} /usr/bin/${bin} || die "dosym ${bin} failed"
done