Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: RFC: kernel-2.eclass Prefix support
Date: Sun, 12 Jun 2016 05:01:26
Message-Id: 22364.60568.833685.618063@a1i15.kph.uni-mainz.de
In Reply to: [gentoo-dev] Re: RFC: kernel-2.eclass Prefix support by Benda Xu
1 >>>>> On Sun, 12 Jun 2016, Benda Xu wrote:
2
3 > I have added EPREFIX logics for EAPI<3 and improved the trailing
4 > slashes and quotes.
5
6 > - [[ -f ${ROOT}/usr/include/linux/autoconf.h ]] \
7 > + [[ -f "${EROOT}"usr/include/linux/autoconf.h ]] \
8
9 Inside [[ ]] quotes are generally not needed. (There are several other
10 instances of this.)
11
12 > - mv ${WORKDIR}/linux* "${D}"/usr/src
13 > + mv ${WORKDIR}/linux* "${ED}"usr/src
14
15 It was like that before your patch, but still ${WORKDIR} should be
16 quoted here.
17
18 Ulrich

Replies

Subject Author
Re: [gentoo-dev] Re: RFC: kernel-2.eclass Prefix support Benda Xu <heroxbd@g.o>