September 2009
2 posts
1 tag
Reinstalling git on Snow Leopard
If you are reinstalling git for Snow Leopard, don’t forget to nuke MacPorts. Leaving an old version on your machine will cause the git compile process to spit out various incorrect architecture errors: ld: warning: in /opt/local/lib/libz.dylib, file is not of required architecture ld: warning: in /opt/local/lib/libiconv.dylib, file is not of required architecture Remove MacPorts with the...
Sep 2nd
1 tag
Reinstalling All Native Gems on Snow Leopard
After installing Snow Leopard all of my native code gems broke horribly, complaining that they were now on the wrong architecture. To re-install every gem automatically, I used: sudo gem list | awk '{print $1}' | xargs sudo gem install
Sep 2nd