Thread overview
posix.mak wants my private key
Apr 05, 2013
Ellery Newcomer
Apr 05, 2013
Martin Nowak
Apr 05, 2013
Dicebot
April 05, 2013
trying to build d-programming-language.org from master, and

make -f posix.mak all

results in

Enter passphrase for key '/home/ellery/.ssh/id_rsa'

wtf?
April 05, 2013
On Fri, 05 Apr 2013 13:41:54 -0400, Ellery Newcomer <ellery-newcomer@utulsa.edu> wrote:

> trying to build d-programming-language.org from master, and
>
> make -f posix.mak all
>
> results in
>
> Enter passphrase for key '/home/ellery/.ssh/id_rsa'
>
> wtf?

It's trying to git clone the repositories from github.  Apparently your key has a passphrase on it.

-Steve
April 05, 2013
On 04/05/2013 07:41 PM, Ellery Newcomer wrote:
> trying to build d-programming-language.org from master, and
>
> make -f posix.mak all
>
> results in
>
> Enter passphrase for key '/home/ellery/.ssh/id_rsa'
>
> wtf?

The makefile should use the git:// protocol instead of ssh to access github.
April 05, 2013
On Friday, 5 April 2013 at 18:34:50 UTC, Martin Nowak wrote:
> On 04/05/2013 07:41 PM, Ellery Newcomer wrote:
>> trying to build d-programming-language.org from master, and
>>
>> make -f posix.mak all
>>
>> results in
>>
>> Enter passphrase for key '/home/ellery/.ssh/id_rsa'
>>
>> wtf?
>
> The makefile should use the git:// protocol instead of ssh to access github.

I usually use http(s) protocol when doing packaging to minimize possible firewall issues.