From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: Texlive Date: Sun, 15 Mar 2015 11:33:45 -0400 Message-ID: <87bnju1die.fsf@netris.org> References: <20150314215429.GA1578@debian> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50530) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YXAY8-0000Yq-Mw for guix-devel@gnu.org; Sun, 15 Mar 2015 11:33:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YXAY5-0003oC-DW for guix-devel@gnu.org; Sun, 15 Mar 2015 11:33:56 -0400 Received: from world.peace.net ([50.252.239.5]:58787) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YXAY5-0003mj-9n for guix-devel@gnu.org; Sun, 15 Mar 2015 11:33:53 -0400 In-Reply-To: <20150314215429.GA1578@debian> (Andreas Enge's message of "Sat, 14 Mar 2015 22:54:29 +0100") 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: > @@ -124,70 +121,157 @@ > > ;; Disable tests on mips64 to cope with a failure of luajiterr.test. > ;; XXX FIXME fix luajit properly on mips64. > - #:tests? ,(not (string-prefix? "mips64" (or (%current-target-system) > + #:tests? ,(not (equal? "mips64el-linux" (or (%current-target-system) > (%current-system)))) What is the rationale for this change? Contrary to what one might expect based on the names of those procedures and the frequent pattern (or (%current-target-system) (%current-system)) (%current-target-system) returns a GNU triplet whereas (%current-system) returns a Nix system. A GNU triplet for MIPS64 will start with "mips64" but is unlikely to be "mips64el-linux". Mark