Page 1 of 1
make install
Posted: Sat Jul 31, 2010 10:36 pm
by alaskaman
when i do make install i get usr/bin/install -m 0700 -d /home/tm/Unreal3.2
usr/bin/install -m 0700 src/ircd /home/tm/Unreal3.2/src/ircd
usr/bin/install: `src/ircd' and `/home/tm/Unreal3.2/src/ircd' are the same file
make: *** [install] Error 1
any idea why
Re: make install
Posted: Sat Jul 31, 2010 11:32 pm
by katsklaw
because you didn't change the default install directory when you ran ./Config. In which case you needn't run make install.
Re: make install
Posted: Sun Aug 01, 2010 1:42 am
by alaskaman
that is not the case as see here /home/tm/Unreal3.2
/usr/bin/install -m 0700 src/ircd /home/tm/Unreal3.2/src/ircd
/usr/bin/install: `src/ircd' and `/home/tm/Unreal3.2/src/ircd' are the same file
make: *** [install] Error 1
tm@server1 [~/Unreal3.2]# im in the /Unreal3.2 dir
Re: make install
Posted: Mon Aug 02, 2010 1:00 am
by katsklaw
that's exactly the case. Read the error, it says that src/ircd is the same file, that means you specified the build directory (which is the default directory). So make install is trying to copy src/ircd to src/ircd. Run ./Config again .. I bet you have the binary path set to "/home/tm/Unreal3.2/src/ircd".
Code: Select all
What is the path to the ircd binary including the name of the binary?
[/home/katsklaw/Unreal3.2/src/ircd] ->
Please trust me on this, I've installed Unreal 2365734673 times in the last 6 years.