Quote:
|
there's not supposed to be a space between the -j and the number is there?
|
it's fine, man says "-j [jobs], --jobs[=jobs]"... it would have complained that there was no "2" build target. Idea was to take advantage of SMP to help speed up compiling.
Code:
/opt/zimbra-src/main/ZimbraBuild/../ZimbraServer/conf/spamassassin/[^C]*
I had thought at the time, that the error was because it was expecting to find something starting with "C" to ignore but there was nothing starting with "C". Upon further reflection that thought seems a bit silly, as it shouldn't care if something is not there if it wants to exclude it anyway...
It make sense that this is a shell expansion problem where dash is bollocking up [^C]* as a real file name instead of expanding it like Bash would do... (I haven't replaced the default shell with bash, forgot that Dapper symlinked sh -> dash). If you wouldn't normally see "C*" files, then I may just change that to cp * instead. [I'm trying to avoid changing stuff in the base distro where possible]
Cheers,
-G