copyplist failed with exit code 71 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:15:13Z http://stackoverflow.com/feeds/question/384962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71 0 copyplist failed with exit code 71 Phil Nash 2008-12-21T21:15:27Z 2009-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#384980 0 Answer by Kevin Ballard for copyplist failed with exit code 71 Kevin Ballard 2008-12-21T21:29:51Z 2008-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#567105 2 Answer by Jimmy for copyplist failed with exit code 71 Jimmy 2009-02-19T20:54:39Z 2009-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#679540 0 Answer by Hrag for copyplist failed with exit code 71 Hrag 2009-03-24T22:42:03Z 2009-03-24T22:42:03Z <p>Thank you Jimmy. That worked great :)</p> http://stackoverflow.com/questions/384962/copyplist-failed-with-exit-code-71/991956#991956 0 Answer by grady player for copyplist failed with exit code 71 grady player 2009-06-14T01:52:56Z 2009-06-14T02:01:20Z <p>yeah, I have this from a custom ruby install, a more universal fix is:</p> <p>sudo ln -s &#96;which ruby&#96; /usr/bin/ruby</p>