[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnustep making me crazy
From: |
Nicola Pero |
Subject: |
Re: gnustep making me crazy |
Date: |
Tue, 7 May 2002 15:49:13 +0100 (BST) |
> > >And some don't even build correctly:
> > >
> > >[nemesis@ghostship ProcViewer]$ make
> > >Making all for app ProcViewer...
> > >May 06 11:26:57 plmerge[7543] Parsing 'ProcViewerInfo.plist' - Parse
> > >failed at line 1 (char 14) - extra data after parsed string
> > >make[1]: *** [ProcViewer.app/Resources/Info-gnustep.plist] Error 139
> > >make: *** [ProcViewer.all.app.variables] Error 2
> >
> > That just looks like there is some bogus data in ProcViewerInfo.plist
> > try editing it to see.
>
> See, that's what I thought. Here are the contents:
>
> NSServices = (
> {
> NSPortName = ProcViewer;
> NSMessage = procInfo;
> NSSendTypes = (
> NSStringPboardType
> );
> NSReturnTypes = (
> NSStringPboardType
> );
> NSMenuItem = {
> default = "Process Info";
> English = "Process Info";
> };
> NSKeyEquivalent = {
> default = P;
> English = P;
> };
> }
> );
>
>
> "character 14" in the error is the "=" sign. :P
>
>
> Thanks for helping me out. :)
At a quick glance, shouldn't the XXXInfo.plist contain a dictionary to
merge ?
I suppose you might want to try adding a '{' at the beginning, and a ';}'
at the end of the file -
{
NSServices = (
xxx etc xxx
);
}