[37] in Hesiod
Bug in hesiod makefile...
daemon@ATHENA.MIT.EDU (Ted Lemon)
Thu Nov 15 19:49:20 1990
To: hesiod@ATHENA.MIT.EDU
Date: Thu, 15 Nov 90 16:35:56 PST
From: Ted Lemon <mellon@wse.dec.com>
When installing in the hesiod directory, the file hesiod.h is removed by the
install program because the -c flag isn't specified.
My fix is to change the following:
install -m 644 hesiod.h ${DESTDIR}${INCDIR}/hesiod.h
to the following:
install -c -m 644 hesiod.h ${DESTDIR}${INCDIR}/hesiod.h
This is using the bits on athena-dist.mit.edu today, building under Ultrix 4.0
on a DECstation 5000.
_MelloN_