[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Enigma-devel] Re: compiling from trunk
From: |
Andreas Lochmann |
Subject: |
[Enigma-devel] Re: compiling from trunk |
Date: |
Mon, 18 Feb 2008 18:49:43 +0100 |
User-agent: |
IceDove 1.5.0.14pre (X11/20080208) |
Hi again,
Tom Davies schrieb:
I tried again using sudo ./autogen.sh && ./configure && make && make
install. but I still got the line:
mkdir: cannot create directory `/usr/local/include/enet': Permission
denied
Ah, I think I have it:
sudo ./autogen.sh && ./configure && make && make install
uses sudo only for autogen.sh, not for make install.
Thus,
./autogen.sh && ./configure && make && sudo make install
should work better.
Greets,
Andreas