2011/10/11 Sascha Ziemann <[email protected]>:
> 2011/10/11 Sascha Ziemann <[email protected]>:
>>
>> Its Debian Lenny:
>>
>
> The system does not matter much. Same error on Squeeze.
>

Seems to be a shell newbie error. ;-)

Take a look at the make file. The plugindir is missing:

PLUGINDIR=$(DESTDIR)

And in the install target the arguments are not quoted:

        install -d ${PLUGINDIR}

This must be written this way:

        install -d "${PLUGINDIR}"

This will not solve the missing plugin dir but avoids shell syntax
errors.  Instead you get a useful error message:

install: cannot create directory `': No such file or directory
make: *** [install] Error 1
_______________________________________________
Monkey mailing list
[email protected]
http://lists.monkey-project.com/listinfo/monkey

Reply via email to