* [gentoo-dev] $BUILDDIR in ebuilds
@ 2005-12-26 7:06 Brian Harring
2005-12-26 7:51 ` [gentoo-dev] " Michael Sterrett -Mr. Bones.-
0 siblings, 1 reply; 5+ messages in thread
From: Brian Harring @ 2005-12-26 7:06 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 174 bytes --]
Hola all.
Just sending a notice/reminder that ebuilds should not be using
$BUILDDIR directly- especially since vapier just commited a rename of
that var.
~harring
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-dev] Re: $BUILDDIR in ebuilds
2005-12-26 7:06 [gentoo-dev] $BUILDDIR in ebuilds Brian Harring
@ 2005-12-26 7:51 ` Michael Sterrett -Mr. Bones.-
2005-12-26 8:00 ` Brian Harring
0 siblings, 1 reply; 5+ messages in thread
From: Michael Sterrett -Mr. Bones.- @ 2005-12-26 7:51 UTC (permalink / raw
To: gentoo-dev
Like in here?
app-doc/halibut/halibut-0.9.ebuild: BUILDDIR="${S}/build" \
net-dns/maradns/maradns-1.0.27.ebuild: BUILDDIR=${S}/build \
net-dns/maradns/maradns-1.0.32.ebuild: BUILDDIR=${S}/build \
Michael Sterrett
-Mr. Bones.-
mr_bones_@gentoo.org
On Sun, 25 Dec 2005, Brian Harring wrote:
> Hola all.
>
> Just sending a notice/reminder that ebuilds should not be using
> $BUILDDIR directly- especially since vapier just commited a rename of
> that var.
>
> ~harring
>
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] Re: $BUILDDIR in ebuilds
2005-12-26 7:51 ` [gentoo-dev] " Michael Sterrett -Mr. Bones.-
@ 2005-12-26 8:00 ` Brian Harring
2005-12-26 13:24 ` Drake Wyrm
0 siblings, 1 reply; 5+ messages in thread
From: Brian Harring @ 2005-12-26 8:00 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 715 bytes --]
On Mon, Dec 26, 2005 at 02:51:26AM -0500, Michael Sterrett -Mr. Bones.- wrote:
> Like in here?
>
> app-doc/halibut/halibut-0.9.ebuild: BUILDDIR="${S}/build" \
> net-dns/maradns/maradns-1.0.27.ebuild: BUILDDIR=${S}/build \
> net-dns/maradns/maradns-1.0.32.ebuild: BUILDDIR=${S}/build \
Actually, calls of that sort is why it's being changed.
They're not relying on portage supplied BUILDDIR location, they're
defining it as an arg to make- the problem is that portage supplied
BUILDDIR has the potential to get used by make.
Either way, those 3 are fine- they're not relying on portage provided
BUILDDIR var, just issueing a directive to make.
~harring
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] Re: $BUILDDIR in ebuilds
2005-12-26 8:00 ` Brian Harring
@ 2005-12-26 13:24 ` Drake Wyrm
2005-12-26 20:52 ` Mike Frysinger
0 siblings, 1 reply; 5+ messages in thread
From: Drake Wyrm @ 2005-12-26 13:24 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 783 bytes --]
Brian Harring <ferringb@gentoo.org> wrote:
>
> On Mon, Dec 26, 2005 at 02:51:26AM -0500, Michael Sterrett -Mr. Bones.- wrote:
> > Like in here?
> >
> > app-doc/halibut/halibut-0.9.ebuild: BUILDDIR="${S}/build" \
> > net-dns/maradns/maradns-1.0.27.ebuild: BUILDDIR=${S}/build \
> > net-dns/maradns/maradns-1.0.32.ebuild: BUILDDIR=${S}/build \
[snip]
> Either way, those 3 are fine- they're not relying on portage provided
> BUILDDIR var, just issueing a directive to make.
In that case, shouldn't they use something like BUILDDIR="$BUILDDIR" to
supply the argument to make?
--
That is not dead which can eternal lie,
And with strange eons even death may die.
-- The Call of Cthulu, II. The Tale of Inspector Legrasse
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] Re: $BUILDDIR in ebuilds
2005-12-26 13:24 ` Drake Wyrm
@ 2005-12-26 20:52 ` Mike Frysinger
0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger @ 2005-12-26 20:52 UTC (permalink / raw
To: gentoo-dev
On Monday 26 December 2005 08:24, Drake Wyrm wrote:
> Brian Harring <ferringb@gentoo.org> wrote:
> > On Mon, Dec 26, 2005 at 02:51:26AM -0500, Michael Sterrett -Mr. Bones.-
wrote:
> > > Like in here?
> > >
> > > app-doc/halibut/halibut-0.9.ebuild: BUILDDIR="${S}/build" \
> > > net-dns/maradns/maradns-1.0.27.ebuild:
> > > BUILDDIR=${S}/build \ net-dns/maradns/maradns-1.0.32.ebuild:
> > > BUILDDIR=${S}/build \
>
> [snip]
>
> > Either way, those 3 are fine- they're not relying on portage provided
> > BUILDDIR var, just issueing a directive to make.
>
> In that case, shouldn't they use something like BUILDDIR="$BUILDDIR" to
> supply the argument to make?
that is how they're being used :P
-mike
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-12-26 20:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-26 7:06 [gentoo-dev] $BUILDDIR in ebuilds Brian Harring
2005-12-26 7:51 ` [gentoo-dev] " Michael Sterrett -Mr. Bones.-
2005-12-26 8:00 ` Brian Harring
2005-12-26 13:24 ` Drake Wyrm
2005-12-26 20:52 ` Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox