Results 1 to 8 of 8
Hi,
I am trying to install a program but it gives me the error
gmake: command not found
which as I understand gmake is an UNIX name for make in ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-05-2007 #1Just Joined!
- Join Date
- Jan 2007
- Posts
- 55
gmake
Hi,
I am trying to install a program but it gives me the error
gmake: command not found
which as I understand gmake is an UNIX name for make in linux? So howw to fix this. Thanks in advance.
- 02-05-2007 #2Linux User
- Join Date
- Jan 2007
- Location
- cleveland
- Posts
- 468
"gmake" is GNU-make; also "pmake" is somebody else's make;
not all the same. Suggest you try "dogpile gmake" in your browserthe sun is new every day (heraclitus)
- 02-05-2007 #3Just Joined!
- Join Date
- Jan 2007
- Posts
- 55
hmmm what do you mean?
- 02-05-2007 #4
Install gmake using the software management tools provided by your distribution. If you need a more accurate answer on how to do this, then let us know what Linux distribution you are using.
- 02-05-2007 #5Just Joined!
- Join Date
- Jan 2007
- Posts
- 55
hi,
I am using Ubuntu but I have not been able to find gmake in my synaptic package manager so if you know how to - it would be great. Thanks in advance
- 02-05-2007 #6
It could be named just make. Anyway if running Ubuntu, I think gmake/make is automatically installed if you install the build-essentials package.
- 02-05-2007 #7Just Joined!
- Join Date
- Jan 2007
- Posts
- 55
hi,
yes make is automatically on the ubuntu. The program(I think) that I am trying to install is written for UNIX which by default has gmake(I think) so should I make a symbolic link between gmake = make ??
- 02-05-2007 #8
You can just create a symbolic link like most distros e.g.
Code:$sudo ln -s /usr/bin/make /usr/bin/gmake


Reply With Quote
