Hi,
There is a slight problem with xenofarm client. I tried to specify
multiple options in project config, got error, and finally hunted:
rm -rf xenofarm_result
mkdir xenofarm_result
CCACHE_LOGFILE="`pwd`/xenofarm_result/ccache.log.txt" \
MAKE="`if [ "xmake" = "x" ]; then echo "${MAKE-make}"; else echo "make"; fi`" MAKE_FLAGS=""CONFIGUREARGS=--without-machine-code"\
"BUILDDIR=build/`uname -s -r -m|sed \"s/ /-/g\"|tr \"[A-Z]\" \"[a-z]\"|tr \"/()\" \"___\"`"" \
/bin/sh bin/xenofarm.sh
/bin/sh: command substitution: line 1: syntax error near unexpected token `('
/bin/sh: command substitution: line 1: `uname -s -r -m|sed \"s/ /-/g\"|tr \"[A-Z]\" \"[a-z]\"|tr \"/()\" \"___\"'
FORMAT 2
BEGIN build
BEGIN compile
make: *** [xenofarm] Interrupt
In this case, when only one argument is specified, there is a problem
already. In case if several arguments are specified, it just stop since
second argument will be interpreted as command name.
As you can see, construct
MAKE_FLAGS=""CONFIGUREARGS=--without-machine-code"
^^^^
is a bit incorrect.
Regards,
/Al