From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [Guix] FTBFS on Ubuntu (12.04) 64bit. Various fatal during install. Date: Fri, 05 Jul 2013 22:29:29 +0200 Message-ID: <87txk8sqc6.fsf@gnu.org> References: <51D71116.3080403@BlueT.org> 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]:33528) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvCiF-0000ZX-FS for bug-guix@gnu.org; Fri, 05 Jul 2013 16:34:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UvCiC-0006eq-Iy for bug-guix@gnu.org; Fri, 05 Jul 2013 16:34:39 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:52084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvCiC-0006ec-CJ for bug-guix@gnu.org; Fri, 05 Jul 2013 16:34:36 -0400 In-Reply-To: <51D71116.3080403@BlueT.org> ("BlueT - Matthew Lien - \=\?utf-8\?B\?57e05ZaG5piOIidz\?\= message of "Sat, 06 Jul 2013 02:31:50 +0800") 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.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: =?utf-8?Q?BlueT_-_Matthew_Lien_-_=E7=B7=B4=E5=96=86=E6=98=8E?= Cc: bug-guix@gnu.org "BlueT - Matthew Lien - =E7=B7=B4=E5=96=86=E6=98=8E" skri= bis: > 1. git version guix, automake version incompactable. > > It stoped at complaining about automake version at bootstraping. > Guix asks for automake 1.12 but ubuntu has only 1.11 Yeah, the latest and greatest Autotools are needed for development. (This will no longer be a problem once you have Guix installed because that=E2=80=99s what the distro has: the latest and greatest. :-)) > 2. guix-2.0, make check FAIL: 7 It=E2=80=99s 0.2 actually. :-) The test log has a lot of these: > suspicious ownership or permission on `/home/bluet/guix-0.2/test-tmp/stor= e/fcj4d6x41bmsp235cwm8zhzpc782xbw4-module-import'; rejecting this build out= put > @ build-failed /home/bluet/guix-0.2/test-tmp/store/15ifzzvqq54r7n891s47q5= rai5l1pfhc-module-import.drv - 1 suspicious ownership or permission on `/ho= me/bluet/guix-0.2/test-tmp/store/fcj4d6x41bmsp235cwm8zhzpc782xbw4-module-im= port'; rejecting this build output The code that leads to this error is this: /* Check that the output is not group or world writable, as that means that someone else can have interfered with the build. Also, the output should be owned by the build user. */ if ((!S_ISLNK(st.st_mode) && (st.st_mode & (S_IWGRP | S_IWOTH))) || (buildUser.enabled() && st.st_uid !=3D buildUser.getUID())) throw BuildError(format("suspicious ownership or permission on `%1%= '; rejecting this build output") % path); Could you check the permissions on these files? What does the =E2=80=98umask=E2=80=99 command show? Thanks, Ludo=E2=80=99.