%% "Geoff Alexander/Raleigh/IBM" <[EMAIL PROTECTED]> writes:

  ga> I posted this to gnu.utils.help last week, but have yet to receive
  ga> any response.  Can someone help with my GNU make install?

Hmm.  I didn't see that come through.  You probably want the bug list
anyway for something like this.

  ga>         ./configure[3172]: (cross-compiling): unknown test operator

Go look at that line of the configure script, and you'll see it looks
like this:

  if test $ac_cv_func_gettimeofday = yes; then

Change this to add quotes, like this:

  if test "$ac_cv_func_gettimeofday" = yes; then

Then try again.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://www.paulandlesley.org/gmake/
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist
_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to