On Sat, Jan 24, 2009 at 4:32 PM, Garrett Cooper <[email protected]> wrote: > I get the following error when registering the install for docbook-xsl > with an up-to-date ports tree: > > ===> Registering installation for docbook-xsl-1.74.0_1 > pkg_create: read_plist: unknown command > '@commentshare/xsl/docbook/eclipse/eclipse.xsl' (package tools out of > date?)
> > I'm not at all sure why pkg_create is substituting @comment in for one > of the environment variables... > > Just wondering if anyone else has seen this issue or not. > The problem is caused by PLIST_SUB substituting the wrong value in to the PLIST: PLIST_SUB+= ECLIPSE="@comment" when it should be: PLIST_SUB+= ECLIPSE="@comment " There is a missing space for all of the @comment substitutions. This is causing pkg_create to see @commentshare... and @comm...@dir as unknow plist commands. Scot _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[email protected]"
