ethomson / jagged

java bindings to libgit2
MIT License
111 stars 28 forks source link

Use uname -m instead of -p #18

Closed carlosmn closed 10 years ago

carlosmn commented 10 years ago

The -p option can return arbitrary pieces of information and is 'unkown' on may distros. The -m options gives us a more appropriate name.

ethomson commented 10 years ago

I'm going to go ahead and merge this on the assumption that uname -m is superior on Linux x86/amd64 and Mac amd64, which is really the only platforms that are targeted here at the moment. I opened #19 to deal with this more generally in the long term, because uname is a hot mess of insanity across vendors.

ethomson commented 10 years ago

Thanks @carlosmn !