From mboxrd@z Thu Jan 1 00:00:00 1970 From: HiPhish Subject: Removing configure flags? Date: Mon, 10 Sep 2018 11:27:01 +0200 Message-ID: <3777480.LYsRssmo1O@aleksandar-ixtreme-m5740> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59208) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzIav-0006QF-7O for guix-devel@gnu.org; Mon, 10 Sep 2018 05:35:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzITO-0003W3-3I for guix-devel@gnu.org; Mon, 10 Sep 2018 05:27:13 -0400 Received: from mout01.posteo.de ([185.67.36.65]:54250) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fzITN-0003UX-MV for guix-devel@gnu.org; Mon, 10 Sep 2018 05:27:09 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 2A61220DFD for ; Mon, 10 Sep 2018 11:27:06 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4282kL33htz6tmP for ; Mon, 10 Sep 2018 11:27:06 +0200 (CEST) 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" To: guix-devel@gnu.org Hello everyone, There is this shell scripting test framework called Roundup which I would like to package for Guix: https://github.com/bmizerany/roundup http://bmizerany.github.io/roundup/ It looks like the author has written his own configure script rather than using autotools to generate it, and it chokes on the default configure flags provided by Guix: https://github.com/bmizerany/roundup/blob/master/configure The culprits are the `--enable-fast-install` flag and the `--build` option. There is no need for either of those since it's all just shell scripts anyway, so is there a way to remove them? I know I can add flags, but I haven't found anything in the manual about removing some of the default flags.