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: Sat, 31 Aug 2013 16:01:08
Message-Id: 1377964839.8261c7f374db3d030b148c91b99623d44a9aed25.yuta_satoh@gentoo
1 commit: 8261c7f374db3d030b148c91b99623d44a9aed25
2 Author: Yuta SATOH <nigoro <AT> gentoo <DOT> gr <DOT> jp>
3 AuthorDate: Sat Aug 31 16:00:39 2013 +0000
4 Commit: Yuta SATOH <nigoro.gentoo <AT> 0x100 <DOT> com>
5 CommitDate: Sat Aug 31 16:00:39 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=8261c7f3
7
8 freebsd.eclass: keep directory, only remove *.mk
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 1053bb8..0ce056a 100644
16 --- a/eclass/freebsd.eclass
17 +++ b/eclass/freebsd.eclass
18 @@ -136,7 +136,7 @@ freebsd_src_unpack() {
19 # When share/mk exists in ${WORKDIR}, it is used on FreeBSD 10.0.
20 # I would enable the code until I find a better solution.
21 if [[ ${MY_PV} == 9999 ]] && [[ ${PN} != freebsd-mk-defs ]]; then
22 - [[ -e "${WORKDIR}"/share/mk ]] && rm -rf "${WORKDIR}"/share/mk
23 + [[ -e "${WORKDIR}"/share/mk ]] && rm -rf "${WORKDIR}"/share/mk/*.mk
24 fi
25
26 cd "${S}"