From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH] gnu: teckit: Update to 2.5.4. Date: Sun, 19 Jul 2015 12:46:50 -0400 Message-ID: <871tg4rt6t.fsf@netris.org> References: <20150719114736.GA2246@debian> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGrk9-0007mo-TB for guix-devel@gnu.org; Sun, 19 Jul 2015 12:47:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZGrk5-0007YX-53 for guix-devel@gnu.org; Sun, 19 Jul 2015 12:47:13 -0400 Received: from world.peace.net ([50.252.239.5]:46722) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGrk5-0007T6-0u for guix-devel@gnu.org; Sun, 19 Jul 2015 12:47:09 -0400 In-Reply-To: <20150719114736.GA2246@debian> (Andreas Enge's message of "Sun, 19 Jul 2015 13:47:36 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Andreas Enge Cc: guix-devel@gnu.org Andreas Enge writes: > There was a comment some time ago by Mark that additional phases should > be added after 'unpack instead of before 'configure; here, the call to > autogen.sh needs to come after 'patch-shebangs. If that's because of the shebang in autogen.sh itself, then the easy solution to that problem is to do (system* "sh" "autogen.sh"). It has to be done after 'unpack', not before 'configure', because otherwise 'patch-usr-bin-file' won't be able to do its job on the generated ./configure script, which tends to cause problems on non-Intel platforms. Mark