[309] in SIPB_Linux_Development
Notes on the mh monster
daemon@ATHENA.MIT.EDU (ghudson@MIT.EDU)
Fri Jan 14 23:52:10 1994
From: ghudson@MIT.EDU
Date: Fri, 14 Jan 94 23:51:44 EST
To: linux-dev@MIT.EDU
I'm working on packaging up mh. The first thing I did was 'make' in
/usr/src/athena/kerberos/email/mh. It failed; some of the things in
support/bboards and support/pop still have the old Makefile rules.
A little bit of checking yielded the following easy fix method. Pick
a program that doesn't build, like 'bbexp'. Look for an appropriate
rule in the makefile, like:
bbexp: xbbexp
And add a semicolon:
bbexp: xbbexp;
This will come in handy when I do something stupid, like try to build
mh 6.8.3.
--GBH