From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Lepiller Subject: bug#39294: Can't run ./configure Date: Sun, 26 Jan 2020 14:05:34 -0500 Message-ID: <6FC43FB3-D685-4C10-9119-2F2676CF5555@lepiller.eu> References: <87wo9e40l2.fsf@cassou.me> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:59945) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ivnFP-0007cw-CU for bug-guix@gnu.org; Sun, 26 Jan 2020 14:07:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ivnFO-0005pQ-CZ for bug-guix@gnu.org; Sun, 26 Jan 2020 14:07:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:51521) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ivnFO-0005ow-9B for bug-guix@gnu.org; Sun, 26 Jan 2020 14:07:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ivnFO-0003f8-3z for bug-guix@gnu.org; Sun, 26 Jan 2020 14:07:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:59792) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ivnEX-0007Ox-8o for bug-guix@gnu.org; Sun, 26 Jan 2020 14:06:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ivnEW-0003fr-9s for bug-guix@gnu.org; Sun, 26 Jan 2020 14:06:09 -0500 Received: from lepiller.eu ([2a00:5884:8208::1]:47866) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ivnEV-0003ZJ-MR for bug-guix@gnu.org; Sun, 26 Jan 2020 14:06:08 -0500 In-Reply-To: <87wo9e40l2.fsf@cassou.me> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 39294@debbugs.gnu.org, damien@cassou.me Le 26 janvier 2020 11:57:45 GMT-05:00, Damien Cassou a= =C3=A9crit : >Hi, > >I'm on Fedora and just installed Guix by using guix-install=2Esh=2E I als= o >checked out Guix git repository=2E When inside this repository, I face >the >following issue: > > $ guix environment guix > =2E=2E=2E > =20 > guix$ =2E/bootstrap > =2E=2E=2E > =20 > guix$ =2E/configure > =2E=2E=2E > checking if (gnutls) is available=2E=2E=2E yes > checking if (git) is available=2E=2E=2E no > configure: error: Guile-Git is missing; please install it=2E > >I tried passing "--ad-hoc guile-git git" as parameter to "guix >environment", but this doesn't fix the problem=2E Hi Damien, don't listen to them, they don't fave a fedora workstation :p On my fedora system, configure finds the system guile which doesn't want t= o use any of the libraries in the environment=2E I always have to do this: $ guix environment guix --pure ^C if your terminal asks you to install whatever [env]$ =2E/bootstrap [env]$ =2E/configure --localstatedir=3D/var # this should now work [env]$ exit # to exit the pure environment $ guix environment guix # no need for pure anymore, so now we can use thin= gs outside of the environment too [env]$ make HTH :)