From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44802) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSKAA-0002kE-92 for guix-patches@gnu.org; Sat, 25 Apr 2020 08:44:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSKA7-0004OF-Dz for guix-patches@gnu.org; Sat, 25 Apr 2020 08:44:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47456) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jSKA5-0004K5-RZ for guix-patches@gnu.org; Sat, 25 Apr 2020 08:44:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jSKA5-0007Wc-Oy for guix-patches@gnu.org; Sat, 25 Apr 2020 08:44:01 -0400 Subject: [bug#40767] [PATCH] gnu: Add maradns. Resent-Message-ID: From: Mathieu Othacehe References: <20200422132922.9539-1-arunisaac@systemreboot.net> <87lfmnock3.fsf@gmail.com> <87blnioawj.fsf@gmail.com> <87y2qkx9sh.fsf@gmail.com> Date: Sat, 25 Apr 2020 14:43:06 +0200 In-Reply-To: (Arun Isaac's message of "Sat, 25 Apr 2020 16:28:47 +0530") Message-ID: <87v9lng2hx.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Arun Isaac Cc: 40767@debbugs.gnu.org > Yes, I checked before pushing. guix lint reported no warnings. Then we may have to fix guix lint because it seems to me that this snippet is above limit: --8<---------------cut here---------------start------------->8--- (string-append (assoc-ref %build-inputs "cross-gcc") "/bin/" ,(%current-target-system) "-gcc") --8<---------------cut here---------------end--------------->8--- Nice fix, thank you :) > "/share/man/man8")) > #t)))))) > + (native-inputs > + `(,@(if (%current-target-system) > + `(("gcc" ,gcc)) > + '()))) You don't need this bit, the native gcc is also present when cross-compiling. Otherwise, LGTM! Mathieu