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
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[email protected]"