From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EF3ED1381F3 for ; Fri, 30 Aug 2013 18:30:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AC48E0E3B; Fri, 30 Aug 2013 18:30:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7E59E0E3B for ; Fri, 30 Aug 2013 18:30:23 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D4FA33ED47 for ; Fri, 30 Aug 2013 18:30:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CFDB2E546C for ; Fri, 30 Aug 2013 18:30:20 +0000 (UTC) From: "Yuta SATOH" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yuta SATOH" Message-ID: <1377886346.3f53712401f69ffc6d22dc205c4ce6b2a3db2eab.yuta_satoh@gentoo> Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: eclass/ X-VCS-Repository: proj/gentoo-bsd X-VCS-Files: eclass/freebsd.eclass X-VCS-Directories: eclass/ X-VCS-Committer: yuta_satoh X-VCS-Committer-Name: Yuta SATOH X-VCS-Revision: 3f53712401f69ffc6d22dc205c4ce6b2a3db2eab X-VCS-Branch: master Date: Fri, 30 Aug 2013 18:30:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f476c741-9740-4479-8f36-8526731b9065 X-Archives-Hash: 6e3a7d64b9788871f85de3e422ba46b5 commit: 3f53712401f69ffc6d22dc205c4ce6b2a3db2eab Author: Yuta SATOH gentoo gr jp> AuthorDate: Fri Aug 30 18:12:26 2013 +0000 Commit: Yuta SATOH 0x100 com> CommitDate: Fri Aug 30 18:12:26 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=3f537124 freebsd.eclass: fix my mistake. ${PV} --> ${MY_PV} --- eclass/freebsd.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index aa5911d..1053bb8 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.eclass @@ -135,7 +135,7 @@ freebsd_src_unpack() { # When share/mk exists in ${WORKDIR}, it is used on FreeBSD 10.0. # I would enable the code until I find a better solution. - if [[ ${PV} == 9999 ]] && [[ ${PN} != freebsd-mk-defs ]]; then + if [[ ${MY_PV} == 9999 ]] && [[ ${PN} != freebsd-mk-defs ]]; then [[ -e "${WORKDIR}"/share/mk ]] && rm -rf "${WORKDIR}"/share/mk fi