From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: gccgo package does not include gccgo binary Date: Tue, 12 Jul 2016 15:23:01 +0200 Message-ID: <871t2zhtxm.fsf@gnu.org> References: <87twg1zedu.fsf@gmail.com> <87shvizcnm.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87a8hpjyun.fsf@gmail.com> <87oa65za4k.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87shvfmz38.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bMxeb-0002G5-E9 for help-guix@gnu.org; Tue, 12 Jul 2016 09:23:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bMxeU-0002r8-FR for help-guix@gnu.org; Tue, 12 Jul 2016 09:23:12 -0400 In-Reply-To: <87shvfmz38.fsf@gmail.com> (Alex Vong's message of "Tue, 12 Jul 2016 09:20:27 +0800") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Alex Vong Cc: help-guix@gnu.org Hello, Alex Vong skribis: > Btw, does anyone have problem cloning github repo? I get the SSL > verfication problem mentioned earlier. However, I have already installed > nss-certs and include the following line in .bashrc: > GIT_SSL_CAINFO=3D"$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" > export GIT_SSL_CAINFO > > Any ideas? It works for me (on GuixSD, but that shouldn=E2=80=99t make a difference.) What does =E2=80=9Cwc -l $GIT_SSL_CAINFO=E2=80=9D say? >From a quick look, Git honors a bunch of additional environment variables in this area: --8<---------------cut here---------------start------------->8--- $ ltrace -f -e getenv sh -c 'git clone https://github.com/elm-lang/elm-comp= iler' 2>&1 |grep SSL [pid 21398] sh->getenv("GIT_SSL_NO_VERIFY") =3D nil [pid 21398] sh->getenv("GIT_SSL_CERT") =3D nil [pid 21398] sh->getenv("GIT_SSL_KEY") =3D nil [pid 21398] sh->getenv("GIT_SSL_CAPATH") =3D nil [pid 21398] sh->getenv("GIT_SSL_CAINFO") =3D "/etc/ssl/certs/ca-cer= tificates.c"... [pid 21398] sh->getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") =3D nil [pid 21398] sh->getenv("GIT_SSL_VERSION") =3D nil [pid 21398] sh->getenv("GIT_SSL_CIPHER_LIST") =3D nil --8<---------------cut here---------------end--------------->8--- Could it be that one of these is shadowing GIT_SSL_CAINFO? There=E2=80=99s also =E2=80=98http.sslCAInfo=E2=80=99 and similar (see git-= config(1)). HTH, Ludo=E2=80=99.