Gentoo Archives: gentoo-commits

From: Yuta SATOH <nigoro.gentoo@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: eclass/
Date: Fri, 30 Aug 2013 18:30:35
Message-Id: 1377886346.3f53712401f69ffc6d22dc205c4ce6b2a3db2eab.yuta_satoh@gentoo
1 commit: 3f53712401f69ffc6d22dc205c4ce6b2a3db2eab
2 Author: Yuta SATOH <nigoro <AT> gentoo <DOT> gr <DOT> jp>
3 AuthorDate: Fri Aug 30 18:12:26 2013 +0000
4 Commit: Yuta SATOH <nigoro.gentoo <AT> 0x100 <DOT> com>
5 CommitDate: Fri Aug 30 18:12:26 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=3f537124
7
8 freebsd.eclass: fix my mistake. ${PV} --> ${MY_PV}
9
10 ---
11 eclass/freebsd.eclass | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass
15 index aa5911d..1053bb8 100644
16 --- a/eclass/freebsd.eclass
17 +++ b/eclass/freebsd.eclass
18 @@ -135,7 +135,7 @@ freebsd_src_unpack() {
19
20 # When share/mk exists in ${WORKDIR}, it is used on FreeBSD 10.0.
21 # I would enable the code until I find a better solution.
22 - if [[ ${PV} == 9999 ]] && [[ ${PN} != freebsd-mk-defs ]]; then
23 + if [[ ${MY_PV} == 9999 ]] && [[ ${PN} != freebsd-mk-defs ]]; then
24 [[ -e "${WORKDIR}"/share/mk ]] && rm -rf "${WORKDIR}"/share/mk
25 fi