Gentoo Archives: gentoo-dev

From: "Diego 'Flameeyes' Pettenò" <flameeyes@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] autotools - 'make' infinite loop
Date: Wed, 05 Jul 2006 20:23:32
Message-Id: 200607052216.38561@enterprise.flameeyes.is-a-geek.org
In Reply to: [gentoo-dev] autotools - 'make' infinite loop by Marcus Furlong
1 On Wednesday 05 July 2006 22:05, Marcus Furlong wrote:
2 > Running 'configure' goes fine, but running 'make' just keeps running
3 > configure over and over.
4 It's commonly caused when the timestamp of configure and the sources for
5 configure are messed up. Make sure no file has modification time in the
6 future, and let the configure script to be regenerated forcefully before
7 make.
8 If you're using kde eclass, just remove the 'configure' file before
9 kde_src_compile, and the eclass will take care.
10
11 If the files have modification time in the future, you must run in src_unpack
12 something like
13
14 find "${S}" -type f -print0 | xargs -0 touch
15
16 --
17 Diego "Flameeyes" Pettenò - http://farragut.flameeyes.is-a-geek.org/
18 Gentoo/Alt lead, Gentoo/FreeBSD, Video, AMD64, Sound, PAM, KDE

Replies

Subject Author
[gentoo-dev] Re: autotools - 'make' infinite loop Marcus Furlong <furlongm@×××××××.com>