On Friday 15 July 2011, Laszlo Papp wrote: > Hi, > > I would like to ask for help with this issue becauseI have run out of > the ideas. The inconsistent "selectionClipboardUrlPasted" is a signal. > I guess with "Mobile" profile (no deprecated mode), it should not > occur that way in the moc file. It is just a guess-work though. I am > trying to build the active-development/4.7 branch. This is the hash of > the last commit in my local folder: d1a3ccd. I did also try to > regenerate this file after a manual removal, but that did apparently > not help. I tried to build it after removing the whole debian folder > content. The "Mobile" profile compilation worked just fine for my host > PC with the same "active-development/4.7." branch, > > That is the exact command I was trying to run from my build directory: > "cmake ../ -DKDE_PLATFORM_PROFILE=Mobile"
Without actually reading the details, at least when running cmake in script mode (with -P), the variables you want to set must be set before the -P. So, does it make a difference if you use the following ? cmake -DKDE_PLATFORM_PROFILE=Mobile ../ Alex