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:oha...@gmx.de] 
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.
> 
> "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
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to