%% Jorge Enrique <[EMAIL PROTECTED]> writes: je> I have a problems when _I use the make in SOlaris 9 je> # /usr/ccs/bin/make
This list is for problems with GNU make; you are using Solaris make here. You'll need to look for help on a list dedicated to Solaris. je> make all-recursive je> bash: make: command not found je> *** Error code 127 je> make: Fatal error: Command failed for target `all' I suggest adding /usr/ccs/bin to your PATH. Most likely your makefile is broken and is invoking sub-makes with an explicit "make", rather than using the variable $(MAKE). Since it's running "make", you have to have the directory containing that program on your PATH. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
