From owner-freebsd-ports@FreeBSD.ORG Tue Oct 16 20:37:22 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA01CB58 for ; Tue, 16 Oct 2012 20:37:22 +0000 (UTC) (envelope-from kclark@actuate.com) Received: from mx2.actuate.com (mx2.actuate.com [69.1.81.237]) by mx1.freebsd.org (Postfix) with SMTP id B22C28FC0C for ; Tue, 16 Oct 2012 20:37:22 +0000 (UTC) Received: from TORMAIL02.actuate.com (Not Verified[10.11.10.56]) by mx2.actuate.com with MailMarshal (v6, 7, 2, 8378) id ; Tue, 16 Oct 2012 13:37:20 -0700 Received: from TORMAIL02.actuate.com ([fe80::5975:6a45:2d04:37ae]) by TORMAIL02.actuate.com ([fe80::5975:6a45:2d04:37ae%13]) with mapi; Tue, 16 Oct 2012 16:37:20 -0400 From: Kristopher Clark To: olli hauer Date: Tue, 16 Oct 2012 16:37:18 -0400 Subject: RE: Problem with COPYTREE_SHARE (new port) Thread-Topic: Problem with COPYTREE_SHARE (new port) Thread-Index: Ac2r2kq+eJeXvJFJSU+iJLIiL/8B6wAA4WAg Message-ID: <1B87BBD44BC9A14A975C757AF852174108605006E0@TORMAIL02.actuate.com> References: <1B87BBD44BC9A14A975C757AF852174108603E7B43@TORMAIL02.actuate.com> <507DBF35.2050505@gmx.de> In-Reply-To: <507DBF35.2050505@gmx.de> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: freebsd-ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 20:37:23 -0000 Thanks! It's working now, I had NO_BUILD=3DYES right after do-install, I m= oved that up on the Makefile and all is good. -----Original Message----- From: olli hauer [mailto:ohauer@gmx.de]=20 Sent: Tuesday, October 16, 2012 3:10 PM To: Kristopher Clark Cc: freebsd-ports@freebsd.org Subject: Re: Problem with COPYTREE_SHARE (new port) On 2012-10-16 21:26, Kristopher Clark wrote: > I'm creating a new port and I'm having some trouble with COPYTREE_SHARE. = I'm following the handbook and I'm still getting the following error. >=20 > "Makefile", line 23: Unassociated shell command "@(cd ${WRKDIR}/ && ${COP= YTREE_SHARE} \* ${PREFIX}/lib/eclipse/${i}/)" >=20 > I'm not sure what I'm missing here, could someone please let me know what= I'm missing? >=20 You have to use the shell command direct after a make target Please post your Makefile or the relevant snippet with some more relevant l= ines. working example: post-install: @(cd ....) .for ... .endfor non working example: post-install: .for ... .endfor @(cd ...) Hope this helps. -- Regards, olli