copyplist failed with exit code 71 - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T16:15:13Zhttp://stackoverflow.com/feeds/question/384962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-710copyplist failed with exit code 71Phil Nash2008-12-21T21:15:27Z2009-06-14T02:01:20Z
<p>I have an iPhone app that's shipping (<em>vConqr</em> - you should go and buy it :-) ).
I build the project on several different machines, including a colleague's, and it's been working fine.
However, just recently, on my second dev machine my build fails every time with the error:</p>
<p><code>
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copyplist Entitlements.plist --outdir /Code/iPhone/VirtualConquest/build/Debug-iphonesimulator/VirtualConquest.app
</code></p>
<p><code>
error: can't exec '/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copyplist' (No such file or directory)
</code></p>
<p>I've reinstalled XCode - twice! (the second time I deleted the files under /Developer/Library/Xcode first).
I've deleted my source tree and checked out of source control fresh.
The error persists.</p>
<p>The Entitlements.plist file has been there for a couple of weeks, since I started my last beta programme. I can't be sure, but I suspect I had not compiled on my second dev machine since it was added. However, as well as my primary dev machine, it also all builds fine on my colleagues machine, so I'm baffled what the difference can be.</p>
<p>I've Googled for the error, but either my Google-Fu is bunk or this is not a common error - I've found no relevant hits.</p>
<p>This is really frustrating, not least because I use my second machine as a soak test/ continuous integration machine.</p>
<p>Anyone come across the same thing, or have any other suggestions?</p>
http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71/384980#3849800Answer by Kevin Ballard for copyplist failed with exit code 71Kevin Ballard2008-12-21T21:29:51Z2008-12-21T21:29:51Z<p>That file exists on my machine. Try doing a third clean reinstall of Xcode (after deleting the entire /Developer tree - the Xcode install should re-add that whole thing). Then immediately check to see if that file exists, as it should.</p>
http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71/567105#5671052Answer by Jimmy for copyplist failed with exit code 71Jimmy2009-02-19T20:54:39Z2009-02-19T20:54:39Z<p>I hit this problem and chased it down to a problem with my ruby install - well not really a problem but anyway</p>
<p>Solved it by doing a symlink to the correct place for my ruby install</p>
<p>sudo ln -s /opt/local/bin/ruby /usr/bin/ruby</p>
<p>Hope this helps someone as it drove me insane! Also, may not be your ruby install this file just loads the core libraries so just run the file, if it exists, to track it down</p>
http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71/679540#6795400Answer by Hrag for copyplist failed with exit code 71Hrag2009-03-24T22:42:03Z2009-03-24T22:42:03Z<p>Thank you Jimmy. That worked great :)</p>
http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71/991956#9919560Answer by grady player for copyplist failed with exit code 71grady player2009-06-14T01:52:56Z2009-06-14T02:01:20Z<p>yeah, I have this from a custom ruby install, a more universal fix is:</p>
<p>sudo ln -s `which ruby` /usr/bin/ruby</p>