Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

'make' not found... 1

Status
Not open for further replies.

simanek

Programmer
Jan 19, 2001
137
US
Continuing on my series of pleas for help, I have an oddball question. I'm in the midst of installing gtar and I do a #CC=gcc LDFLAGS=-static ./configure
(note that # is the prompt) and it goes along on it's merry way until BAM! Make is not found! I've put /usr/ccs/bin in my path but no dice (i double checked that 'make' was, in fact, in there). Any ideas?

Mike
 
Hi,

What does :
#type make
make not found
or
make is a tracked alias for /usr/ccs/bin/make

Since configure is a script just add these lines
to try if they work at the start
of the script.(make sure ur script is using sh)
PATH=$PATH:/usr/ccs/bin;export PATH

And then run ./configure.ATB

Enjoy Unix..
s-)
DJC


 
Heh...it was all becuase I didn't execute that 'export' command. Thanks for the help.

Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top