![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how can i make sar command run forever ? | umen | UNIX for Dummies Questions & Answers | 5 | 01-30-2008 06:23 AM |
| How can I trigger another make command when one is finished? | umen | Shell Programming and Scripting | 2 | 12-09-2007 04:56 AM |
| Regarding "How to make a script as a command? | mthiruna | UNIX for Advanced & Expert Users | 3 | 10-19-2007 07:12 AM |
| make command | legato | UNIX for Dummies Questions & Answers | 8 | 05-11-2005 01:06 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
make command
Dear Guys ,
Kindly note that i have sun solaries 8 intel machine . i installed apache and it is working fine . i am installing perl5 , MD5 and CGI . but whenever i execute the commands , make , make test and make install i get error message : not found # make make: not found also i want to ask what does this mean "If you do install this perl and want to use it rather than the Sun one, you will need to have /usr/local/bin in your PATH before /usr/bin " ??? koz i installed perl in my home directory and tried to set it up from my home DIR. is this correct ?? or i should install in in /usr/local/bin ?? Thanks so much
__________________
Muhannad Tamemi |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Re: make command
Quote:
To see your PATH setting, use command (in sh): echo $PATH or printenv PATH To fix this problem, first find out where program 'make' is located. Try commands like: which make whereis make locate make Once you figure out where program make is installed add this directory to PATH (I use example directory /usr/ccs/bin) export PATH=$PATH:/usr/ccs/bin/make or alternatively you can execute program typing absolute path. ie: /usr/ccs/bin/make Quote:
$echo $PATH /bin:/usr/dt/bin:/usr/bin:/usr/local/bin $ export PATH=/bin:/usr/dt/bin:/usr/local/bin:/usr/bin $echo $PATH /bin:/usr/dt/bin:/usr/local/bin:/usr/bin $perl -V This should give infomation about newly installed perl. You can also set a symlink from /usr/bin/perl to /usr/local/bin/perl man ln for more details Quote:
|
|
#3
|
|||
|
|||
|
Re: make command
Quote:
To see your PATH setting, use command (in sh): echo $PATH or printenv PATH To fix this problem, first find out where program 'make' is located. Try commands like: which make whereis make locate make Once you figure out where program make is installed add this directory to PATH (I use example directory /usr/ccs/bin) export PATH=$PATH:/usr/ccs/bin/make or alternatively you can execute program typing abs |
|||
| Google The UNIX and Linux Forums |