Gentoo Archives: gentoo-dev

From: David Leverton <levertond@××××××××××.com>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] [RFC] New eclass for x11 packages
Date: Thu, 18 Feb 2010 23:22:54
Message-Id: 201002182322.45395.levertond@googlemail.com
In Reply to: Re: [gentoo-dev] [RFC] New eclass for x11 packages by "Tomáš Chvátal"
1 On Thursday 18 February 2010 23:16:54 Tomáš Chvátal wrote:
2 > That || die is not for eautoreconf
3 >
4 > [[ -e "something" ]] && somethingexists || somethingisnotexisting
5 >
6 > For your behaviour it would have to look like this
7 >
8 > [[ -e "something" ]] && { somethingexists || die if the commands failed ; }
9
10 Do you mean that it's /supposed/ to ewarn if configure.ac doesn't exist? Do
11 you expect that to happen for X.org packages that have a configure script at
12 all? (Which IIRC is all of them; if there are any that don't have a
13 configure, there's obviously no reason to worry about not being able to
14 rebuild it.)