From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Packaging Coq Date: Thu, 4 Dec 2014 11:07:48 +0100 Message-ID: <20141204100748.GA4371@debian.math.u-bordeaux1.fr> References: <87ppc0447w.fsf@karetnikov.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XwTKV-0003e3-RQ for guix-devel@gnu.org; Thu, 04 Dec 2014 05:08:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XwTKM-0004gF-CJ for guix-devel@gnu.org; Thu, 04 Dec 2014 05:08:11 -0500 Received: from mout.kundenserver.de ([212.227.17.13]:61092) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XwTKM-0004fp-2q for guix-devel@gnu.org; Thu, 04 Dec 2014 05:08:02 -0500 Content-Disposition: inline In-Reply-To: <87ppc0447w.fsf@karetnikov.org> 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: Nikita Karetnikov Cc: guix-devel@gnu.org On Thu, Dec 04, 2014 at 05:02:27AM +0400, Nikita Karetnikov wrote: > ;; 'configure' does not recognize the flags if you > ;; use 'system*'. > (system (string-append "./configure" > " -prefix " out > " -camldir " > (dirname (which "ocaml"))))))) This is very strange, how is it at all possible that system* does not work? > (alist-replace 'build > (lambda _ > (system* "make" "world")) Instead of this, you could use #:make-flags '("world") Andreas