Problem with COPYTREE_SHARE (new port)

Kristopher Clark kclark at actuate.com
Tue Oct 16 20:37:23 UTC 2012


Thanks!  It's working now, I had NO_BUILD=YES right after do-install, I moved that up on the Makefile and all is good.

-----Original Message-----
From: olli hauer [mailto:ohauer at gmx.de] 
Sent: Tuesday, October 16, 2012 3:10 PM
To: Kristopher Clark
Cc: freebsd-ports at 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.
> 
> "Makefile", line 23: Unassociated shell command "@(cd ${WRKDIR}/ && ${COPYTREE_SHARE} \* ${PREFIX}/lib/eclipse/${i}/)"
> 
> I'm not sure what I'm missing here, could someone please let me know what I'm missing?
> 

You have to use the shell command direct after a make target

Please post your Makefile or the relevant snippet with some more relevant lines.

working example:
post-install:
	@(cd ....)
.for ...
.endfor

non working example:
post-install:
.for ...
.endfor
	@(cd ...)


Hope this helps.

--
Regards,
olli


More information about the freebsd-ports mailing list