tags:

views:

93

answers:

1

I wanted to install git with macports - it failed. ok. So I went with dmg - succeeded.

However, now I cannot remove git from some install queue and if I want install anything it still fetches git install command (which is failing btw).

so.. "sudo port install htop" still invokes "sudo port install git-core"

how to fix it?

+1  A: 

htop uses a git repo. You have to install git-core first. Try this first:

sudo port clean git-core

Nerdling
did that.also with selfupdate before.didn't know about git dependency, so just forget theory with install queue ;)this is error output: Command output: _lock_remote in http-push.o _main in http-push.o "_XML_GetErrorCode", referenced from: _remote_ls in http-push.o _lock_remote in http-push.o ... similar ld: symbol(s) not foundcollect2: ld returned 1 exit statusmake: *** [git-http-push] Error 1
michal