Gentoo Archives: gentoo-dev

From: Daniel Drake <dsd@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] src_configure
Date: Thu, 07 Jul 2005 07:12:53
Message-Id: 42CCD4E4.7050804@gentoo.org
In Reply to: Re: [gentoo-dev] src_configure by Jonathan Smith
1 Jonathan Smith wrote:
2 > you could simply make the default:
3 >
4 > src_configure() {
5 > [ -f ./configure ] && econf || die
6 > }
7
8
9 No need, this will do fine as a default:
10
11 src_configure() {
12 econf || die
13 }
14
15 Since econf already checks for a configure script and does nothing if it can't
16 find one...
17
18 Daniel
19 --
20 gentoo-dev@g.o mailing list

Replies

Subject Author
Re: [gentoo-dev] src_configure twofourtysix <twofourtysix@×××××.com>
Re: [gentoo-dev] src_configure Martin Schlemmer <azarah@g.o>