Hello guys,

I am currently trying to run a simple hello world program on OpenWRT on a mips target (RT5350F).
When i compile the whole system including the helloworld program (which a added to the build system) it works (compiled in to the rootfs).

Now am trying to compile the program by its self so i can easily upload a new version via ftp (and then debug it).
I do the following:
make package/helloworld/{clean,compile} V=99

But then i run the helloworld program on the target it gives the following:
./helloworld: line 1: syntax error: unexpected word (expecting ")")

What am i doing wrong?