Hampton Catlin
Hampton Catlin is the inventor of Sass, a CSS generating language, and the Haml markup language
He is the original creator of Wikipedia Mobile (m.wikipedia.org) and is also the creator of several successful iPhone applications including Dictionary!
Hampton is currently building crazy new technologies to mobilize the web at Moovweb.
ginstall with gems
So, I don’t know what changed. Apparently some ruby gems have a fancy new way of building themselves and it gives this lovely complaint on Snow Leopard:
make install
/opt/local/bin/ginstall -c -m 0755 nokogiri.bundle /usr/local/lib/ruby/gems/1.8/gems/nokogiri-1.4.0/lib/nokogiri
make: /opt/local/bin/ginstall: No such file or directory
make: *** [/usr/local/lib/ruby/gems/1.8/gems/nokogiri-1.4.0/lib/nokogiri/nokogiri.bundle] Error 1
Oh man.
BUT, I FIGURED IT OUT. So, after a crap load of Googling… ginstall is the same thing as install. Thusly this should solve your problem.
sudo ln -s /usr/bin/install /opt/local/bin/ginstall
Enjoy!
Comments