Re: [gentoo-dev] [PATCH] multilib-minimal.eclass: allow relative paths to $S for DOCS variable wrt #468092

2013-05-02 Thread hasufell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Otherwise I could just use a second variable and unset DOCS. > Hm no, that would suck too, cause it will jump into the the first if clause. I'll probably inline it all then. -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19 (GNU/Linux) Comment

Re: [gentoo-dev] [PATCH] multilib-minimal.eclass: allow relative paths to $S for DOCS variable wrt #468092

2013-05-02 Thread hasufell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 05/02/2013 06:31 PM, Michał Górny wrote: > On Thu, 02 May 2013 18:24:19 +0200 hasufell > wrote: > >> currently default_src_install is carried out in $BUILD_DIR and >> not in $S >> >> that means people have to do something like this: DOCS=( >> "${

Re: [gentoo-dev] [PATCH] multilib-minimal.eclass: allow relative paths to $S for DOCS variable wrt #468092

2013-05-02 Thread Michał Górny
On Thu, 02 May 2013 18:24:19 +0200 hasufell wrote: > currently default_src_install is carried out in $BUILD_DIR and not in $S > > that means people have to do something like this: > DOCS=( "${S}"/ChangeLog{,.libffi,.libgcj,.v1} "${S}"/README ) > > The attached patch is a bit ugly, but I don't s

[gentoo-dev] [PATCH] multilib-minimal.eclass: allow relative paths to $S for DOCS variable wrt #468092

2013-05-02 Thread hasufell
currently default_src_install is carried out in $BUILD_DIR and not in $S that means people have to do something like this: DOCS=( "${S}"/ChangeLog{,.libffi,.libgcj,.v1} "${S}"/README ) The attached patch is a bit ugly, but I don't see a better way. It will allow: DOCS=( ChangeLog{,.libffi,.libgcj