The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


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 !!

More UNIX and Linux Forum Topics You Might Find Helpful
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

Closed Thread
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 07-07-2003
Registered User
 

Join Date: Feb 2002
Posts: 78
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  
Old 07-07-2003
mib mib is offline
Registered User
 

Join Date: Jan 2001
Location: Calicut
Posts: 228
Re: make command

Quote:
Originally posted by tamemi
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
Means program 'make ' is not in your PATH or not available on your system (i doubt it. check /usr/ccs/bin). When you type command 'make' in shell prompt it looks for file named 'make' in directories mentioned in PATH environment variable. If there is no file named 'make' in these directory it returns above mentioned error.

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:

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 " ???
Means if you want to use newly installed perl (by defualt which will be installed in /usr/local/bin) instead of using one shipped with solaris (which is installed in /usr/bin) modify PATH variable to set /usr/local/bin before /usr/bin
$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:

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 ??
You can install wherever you want if you know what you are doing . If you want to install perl in your home directory pass appropriate parameters to ./configure script (./configure --help or read INSTALL doc) and change PATH env.
  #3  
Old 07-07-2003
mib mib is offline
Registered User
 

Join Date: Jan 2001
Location: Calicut
Posts: 228
Re: make command

Quote:
Originally posted by tamemi
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
Means program 'make ' is not in your PATH or not available on your system (i doubt it. check /usr/ccs/bin). When you type command 'make' in shell prompt it looks for file named 'make' in directories mentioned in PATH environment variable. If there is no file named 'make' in these directory it returns above mentioned error.

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
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 07:49 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0