[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Installing KCL



>>  I'm having trouble installing KCL on a Sun3/60 running SunOS 4.1. After
>> running unixport/makefile, the system tells me defmacro.o has a "bad secondary
>> number." I noticed a line in the lsp/makefile that appended data files at the

I guess your makefiles use the following ``magic number''.

	/usr/bin/echo "\000\000\000\000" >> $*.o

SunOS 4.1 uses another ``magic number''.  Use this line for your makefiles.

   /usr/bin/echo "\000\000\004\020\000\000\000\000" >> $*.o

-- Taiichi