This content has been marked as final.
Show 7 replies
-
1. Re: gmake gtrouble
Robert Cohen Feb 22, 2006 9:19 AM (in response to 807557)I suspect that the makefile is invoking a recursive make command and not realising that it needs to use "gmake" instead of make.
try something like "gmake MAKE=gmake"
Or executing
MAKE=gmake
export MAKE
before you do the compilation
If that doesnt work you can try putting a symlink called make to gmake somewhere thats in your path -
2. Re: gmake gtrouble
807738 Feb 22, 2006 4:38 PM (in response to 807557)Add /usr/ccs/bin to your command search path. This is where the standard Sun 'make' and related tools live. -
3. Re: gmake gtrouble
807557 Feb 22, 2006 9:52 PM (in response to 807738)No dice. I added /usr/ccs/bin to my path and gmake ran partway, only to return something like: "Fatal error: command failed for target 'all-recursive'."
I also had problems with the other suggestions:
Any ideas? Thank you both for your responses.# gmake MAKE=gmake [lines omitted] gmake[2]: *** [libxml2.la] Error 1 gmake[2]: Leaving directory `/usr/libxml2-2.6.23' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/libxml2-2.6.23' gmake: *** [all] Error 2 # MAKE=gmake # export MAKE # gmake [lines omitted] make: Fatal error: Command failed for target `all-recursive' Current working directory /usr/libxml2-2.6.23 gmake: *** [all] Error 1
JJ -
4. Re: gmake gtrouble
807557 Feb 23, 2006 10:32 PM (in response to 807557)I got desparate and started over from scratch. I am pretty sure it worked like a charm. All seems to have gone perfectly. If I find out any different I'll be back begging for help again. Thank you. -
5. Re: gmake gtrouble
807557 Jun 3, 2006 12:42 PM (in response to 807557)Please I would like to know how did you solve your problem -
6. Re: gmake gtrouble
807557 Jul 10, 2006 7:00 AM (in response to 807557)I also have same trouble plase ehlp!!! -
7. Re: gmake gtrouble
807557 Jul 11, 2006 3:03 AM (in response to Robert Cohen)Or executing
This worked perfectly for me, once I reran ./configure, which might explain the original poster's apparent resolution of the problem after he restarted from scratch.
MAKE=gmake
export MAKE
before you do the compilation
(Erm.. no it didn't, I now get the
gmake[2]: *** [libxml2.la] Error 1
error.)
Message was edited by:
Naib