From owner-freebsd-ports@FreeBSD.ORG Tue Aug 19 08:19:33 2014 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58A10435 for ; Tue, 19 Aug 2014 08:19:33 +0000 (UTC) Received: from mail-ie0-x231.google.com (mail-ie0-x231.google.com [IPv6:2607:f8b0:4001:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 252E63DD6 for ; Tue, 19 Aug 2014 08:19:33 +0000 (UTC) Received: by mail-ie0-f177.google.com with SMTP id at20so669168iec.36 for ; Tue, 19 Aug 2014 01:19:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=muRUbN+ZpOfPK2eDgg6NNNBCHweu4myV09IFWJoRKI0=; b=pKRGOxQrPXsaF9GAHeCgPFfIJ3gURNxWvGdy4gYWOoCz294vyyUn8DsKpmVIlLZn+V XSlIzZyowbeAtY+SX8WMTzOfFFgH9aGCrI7wsl/2AGYiEK7MJO4+s2de6Pe000JNRGpN FrEs2MamSbUCu35C7Q6n9ARy99Wte+9HwBPo/ATaCeICa80hGIBpBIB6bf5RGtLzLlGK +GiieJGPKgV0Kaun2iqbvML/8jU3nYxY5z7D4tm+Es2gGicemnt1hX0ellTJCRNIDPBZ beNQPQYH1fKMhymOdZNVc3myipDMGzeugjgNRZAAEOQV3e/Ui6objfrpyG2QH+bKzeKF SN6Q== MIME-Version: 1.0 X-Received: by 10.50.143.73 with SMTP id sc9mr835476igb.29.1408436372533; Tue, 19 Aug 2014 01:19:32 -0700 (PDT) Received: by 10.107.11.106 with HTTP; Tue, 19 Aug 2014 01:19:32 -0700 (PDT) In-Reply-To: <20140717213635.35c8bf17@DaemON.home> References: <20140715224238.3c4e31b1@DaemON.home> <87a98agwds.wl-hskuhra@eumx.net> <20140716211223.20231dc6@DaemON.home> <87ha2ht65t.wl-hskuhra@eumx.net> <20140716224036.2e42d8a9@DaemON.home> <87fvi1t1i1.wl-hskuhra@eumx.net> <20140717213635.35c8bf17@DaemON.home> Date: Tue, 19 Aug 2014 02:19:32 -0600 Message-ID: Subject: Re: upgrading devel/p5-subversion fails From: Chris Torek To: ports@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2014 08:19:33 -0000 I think the problem really is that this needs MAKE_JOBS_UNSAFE set. I just had a build fail, and in the portmaster log file for the failure, I see this fragment: Running Mkbootstrap for SVN::_Core () chmod 644 _Client.bs cp _Client.bs blib/arch/auto/SVN/_Client/_Client.bs chmod 644 blib/arch/auto/SVN/_Client/_Client.bs chmod 644 _Core.bs cp _Core.bs blib/arch/auto/SVN/_Core/_Core.bs chmod 644 blib/arch/auto/SVN/_Core/_Core.bs AutoSplit: Can't open blib/lib/SVN/Wc.pm: No such file or directory cp Delta.pm blib/lib/SVN/Delta.pm cp Repos.pm blib/lib/SVN/Repos.pm cp Client.pm blib/lib/SVN/Client.pm cp Fs.pm blib/lib/SVN/Fs.pm cp Ra.pm blib/lib/SVN/Ra.pm cp Core.pm blib/lib/SVN/Core.pm cp Wc.pm blib/lib/SVN/Wc.pm *** [pm_to_blib] Error code 2 This comes from the pm_to_blib target in a sub-makefile. Note the complaint that AutoSplit was unable to open blib/lib/SVN/Wc.pm, which comes out well before the "cp" command copies Wc.pm into the target location. Chris