From owner-svn-ports-all@FreeBSD.ORG Fri Jun 19 13:14:06 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E892A5B for ; Fri, 19 Jun 2015 13:14:06 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: from mail-la0-f47.google.com (mail-la0-f47.google.com [209.85.215.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 26246789 for ; Fri, 19 Jun 2015 13:14:05 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: by labbc20 with SMTP id bc20so73919749lab.1 for ; Fri, 19 Jun 2015 06:13:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=hmvB9iTdfJKBzBKpu04iWMinMSM2npLH5VxUa8Sv0F4=; b=cD9vWf19kxBZmCGojYHB5aEQ9O5KhZMtJoLTpkCtV8fUuNfKjPQgHcdnU6l6yyUraD zh5RLXvHZNvL+y+lOp6DOZ0Fj/H1/vfYzm8GpLTfR63hq+W5u04SJLwpAej+sH8LkBAm nSp5L5waLw22Vv20YSJCCLy1xW1KCXJZDMmN717u8RSlSjLimkG1EqKEPCvX1fBbRIFP 2sQbUY4vbFVDpqiptlZGMaYtHHuuBSoznH+KZvVVU2UscaQGJ7sAMuDzjyxQkTK3y2cZ U1fyWB3+SZizWyK4ffvpQgsTQOz43VEvIJQVpGb0OYFekyEtBm4nhRXVkOmB17H+TIrg f0mQ== X-Gm-Message-State: ALoCoQmMHfZt3U686SmWweKUUE3KhWSUzDDFha0L0HrkI3o6NgqwF/u1i8UsFXFuFKUtBGqTKfYs MIME-Version: 1.0 X-Received: by 10.152.5.227 with SMTP id v3mr18073067lav.122.1434719637962; Fri, 19 Jun 2015 06:13:57 -0700 (PDT) Received: by 10.112.254.129 with HTTP; Fri, 19 Jun 2015 06:13:57 -0700 (PDT) Reply-To: v@fatpipi.com In-Reply-To: References: <201506180452.t5I4qDqg063071@svn.freebsd.org> Date: Fri, 19 Jun 2015 21:13:57 +0800 Message-ID: Subject: Re: svn commit: r390011 - head/security/p5-CryptX From: Vanilla Hsu To: Sunpoet Po-Chuan Hsieh Cc: "Vanilla I. Shu" , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 13:14:06 -0000 Got it, thanks. I will remove the target soon. 2015-06-19 15:39 GMT+08:00 Sunpoet Po-Chuan Hsieh : > On Thu, Jun 18, 2015 at 12:52 PM, Vanilla I. Shu > wrote: > >> Author: vanilla >> Date: Thu Jun 18 04:52:13 2015 >> New Revision: 390011 >> URL: https://svnweb.freebsd.org/changeset/ports/390011 >> >> Log: >> Fix build on non-root user. >> >> Submitted by: mat@ >> >> Modified: >> head/security/p5-CryptX/Makefile >> >> Modified: head/security/p5-CryptX/Makefile >> >> ============================================================================== >> --- head/security/p5-CryptX/Makefile Thu Jun 18 02:29:40 2015 >> (r390010) >> +++ head/security/p5-CryptX/Makefile Thu Jun 18 04:52:13 2015 >> (r390011) >> @@ -21,7 +21,9 @@ USES= perl5 >> USE_PERL5= modbuild >> >> post-install: >> + ${CHMOD} u+w >> ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so >> ${STRIP_CMD} >> ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so >> + ${CHMOD} u-w >> ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so >> >> regression-test: build >> @cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} >> ${MAKE_ARGS} test >> >> > FYI, regression-test: is defined in perl5.mk. > > Regards, > sunpoet >