From owner-freebsd-ports@FreeBSD.ORG Sun Jan 18 11:18:39 2015 Return-Path: Delivered-To: ports@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 63C21322 for ; Sun, 18 Jan 2015 11:18:39 +0000 (UTC) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4171FCE0 for ; Sun, 18 Jan 2015 11:18:38 +0000 (UTC) Received: from ip-77-24-71-88.web.vodafone.de (ip-77-24-71-88.web.vodafone.de [77.24.71.88]) by ainaz.pair.com (Postfix) with ESMTPSA id 4EB4A3F461 for ; Sun, 18 Jan 2015 06:18:30 -0500 (EST) Date: Sun, 18 Jan 2015 12:18:27 +0100 (CET) From: Gerald Pfeifer To: ports@FreeBSD.org Subject: INSTALL_TARGET=install-strip runs into "permission denied" Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII 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: Sun, 18 Jan 2015 11:18:39 -0000 The ports q/a framework has been suggesting this for a while, so I added INSTALL_TARGET=install-strip to lang/gcc5/Makefile. Using install-strip for vanilla GCC builds (from source, outside the FreeBSD Ports framework) works just fine. In the context of Ports this runs into a permission problem since install sets binaries to r-x, at which point strip then fails. Here is the build log: install -m 555 fixinc.sh .../prefix/gcc5/libexec/gcc5/gcc/i386-portbld-freebsd10.1/5.0.0/install-tools/fixinc.sh install -s -m 555 fixincl .../prefix/gcc5/libexec/gcc5/gcc/i386-portbld-freebsd10.1/5.0.0/install-tools/fixincl install -m 555 mkheaders .../prefix/gcc5/libexec/gcc5/gcc/i386-portbld-freebsd10.1/5.0.0/install-tools/mkheaders test -z 'strip' || strip .../prefix/gcc5/libexec/gcc5/gcc/i386-portbld-freebsd10.1/5.0.0/install-tools/fixincl strip: unable to copy file '.../prefix/gcc5/libexec/gcc5/gcc/i386-portbld-freebsd10.1/5.0.0/install-tools/fixincl'; reason: Permission denied Makefile:191: recipe for target 'install-strip' failed gmake[3]: *** [install-strip] Error 1 How do we best go about this? Gerald