Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Oct 2012 16:37:18 -0400
From:      Kristopher Clark <kclark@actuate.com>
To:        olli hauer <ohauer@gmx.de>
Cc:        freebsd-ports <freebsd-ports@FreeBSD.org>
Subject:   RE: Problem with COPYTREE_SHARE (new port)
Message-ID:  <1B87BBD44BC9A14A975C757AF852174108605006E0@TORMAIL02.actuate.com>
In-Reply-To: <507DBF35.2050505@gmx.de>
References:  <1B87BBD44BC9A14A975C757AF852174108603E7B43@TORMAIL02.actuate.com> <507DBF35.2050505@gmx.de>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1B87BBD44BC9A14A975C757AF852174108605006E0>