make install

These are old archives. They are kept for historic purposes only.
Post Reply
alaskaman
Posts: 4
Joined: Sat Jul 31, 2010 10:32 pm

make install

Post 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
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: make install

Post by katsklaw »

because you didn't change the default install directory when you ran ./Config. In which case you needn't run make install.
alaskaman
Posts: 4
Joined: Sat Jul 31, 2010 10:32 pm

Re: make install

Post 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
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: make install

Post 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.
Post Reply