[comp.os.minix] mkproto

cagney@chook.ua.oz (Andrew Cagney - aka Noid) (03/05/90)

aubrey@rpp386.cactus.org (Aubrey McIntosh) writes:
> mkproto from Oz doesn't work when compiled as posted under 1.5.0.
> A debugg line shows that it is building directory names of the form
> param
> param/
> param//
> param///
> and so on.  I'm sure the fix is trivial, it's just hiding right now.

check the make file, when I posted mkproto I incorrectly left a -DUNIX (1)
in the cc command in the make file. Just compile using the line
	cc -o mkproto mkproto.c
and you should get a version that works. (Also watch out for memory problems
on deep directory trees).

					Andrew Cagney.

(1) -DUNIX is used when compiling on non POSIX versions of unix. (eg umax)