make install will *only* work if you specified the --prefix parameter, otherwise the build system will assume that Monkey will run from the same directory and everything will be configured for that.
On Tue, Oct 11, 2011 at 6:38 AM, Sascha Ziemann <[email protected]> wrote: > 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 > -- Eduardo Silva http://edsiper.linuxchile.cl http://www.monkey-project.com _______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
