As soon as I set any cmake-options on a module kdesvn-build fails to configure the module. It executes cmake without the actual source directory in the arguments as far as I can see from the output. Reverting r867894 fixes the problem. The comment on the commit also seems strange, at least here cmake-options that have quotes are not a problem without that revision.
I have someone else with the same bug but I can't reproduce it myself. Can you attach the kdesvn-buildrc you're using?
Created attachment 30165 [details] .kdesvn-buildrc producing the problem
I'm so stupid, I never tried having tons of cmake-options in a single module when trying to reproduce. I've reproduced the problem, now to isolate the cause.
SVN commit 910294 by mpyne: Fix bug 172719 (cmake-options causes kdesvn-build to fail). The root cause of the problem was that when you had more than one option on a single cmake-options command that it was not getting split into a list properly. The root cause of *that* error was that the regular expression I used to perform the split (without splitting around double-quotes) failed with leading whitespace. I didn't do testing for that case but that it how the function ends up getting called in kdesvn-build. In addition to the bug I've added quotes around individual command parameters for log_command() to make future instances of this type of bug (improper splitting) more obvious. BUG:172719 M +3 -2 kdesvn-build WebSVN link: http://websvn.kde.org/?view=rev&revision=910294
SVN commit 911197 by mpyne: Backport fix for bug 172719 to KDE 4.2 branch as requested by André Wöbbeking. Please note however that the next release of kdesvn-build will be from /trunk so this is only useful if you're tracking 4.2 kdesdk for your kdesvn-build. CCBUG:172719 M +2 -1 kdesvn-build WebSVN link: http://websvn.kde.org/?view=rev&revision=911197