4d1680b452
but replacing the "dir" file unconditionally isn't it. During the course of development, if .info files go away from the sources, nothing removes them from /usr/share/info, this is the same as system binaries etc. Removing the entire index isn't helpful, because you've got to reinstall the entire tree to get it back again. bsd.info.mk has a reference to /usr/share/info/dir-tmpl, I wonder if it once created dir if needed?
16 lines
384 B
Makefile
16 lines
384 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 dir-tmpl \
|
|
${DESTDIR}${BINDIR}/info/dir-tmpl
|
|
if [ ! -f ${DESTDIR}${BINDIR}/info/dir ]; then \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 dir-tmpl \
|
|
${DESTDIR}${BINDIR}/info/dir ; \
|
|
fi
|
|
|
|
.include <bsd.prog.mk>
|