Reputation: 5117
I just installed xcode 4.3, since they moved filemerge application inside xCode package. filemerge is not working through svnX app(I have set default application as filemerge in svnX) to find the difference. How to fix this one(Xcode4.3 + svnX + filemerge)?
Upvotes: 1
Views: 1339
Reputation: 2421
After installing the Xcode 4.3 all the utilities apps are moved in the Xcode.app folder in the applications. just do a "Show Package Contents" and navigate to : /Applications/Xcode.app/Contents/Applications and you'll find it there, u can drag it to your dock back again
Upvotes: 0
Reputation: 412
It appears that the system does not know about the new path to the Developer directory. I executed the following command in Terminal and restarted svnX. This did the trick.
sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer/
Upvotes: 14