failure

Henry Cejtin henry@sourcelight.com
Wed, 18 Oct 2000 18:26:10 -0500


The  new  RPMs  fail.   The  problem is that in src/runtime/Makefile, you use
makedepend (yuck) with an argument
    -I$(INC)
but INC isn't defined any where.  Thus no  error  message  is  produced,  but
makedepend is run with an argument
    -I
It  seems  that in the version of makedepend under Red Hat 7.0 this causes it
to read from stdin (clearly goofy, but it should  have  produced  an  error).
Thus the make just sits there.

I don't know what you intended this INC to be, so I don't know the fix.  Just
dropping the
    -I$(INC)
seems ok, but who knows.

Another difference I noted is that it doesn't try and remake mlton.c now if I
just run make in the src directory.  Is this what you wanted?