1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

o No need to install `dir-tmpl' to /usr/share/info.

o Do not clobber an existing /usr/share/info/dir.

Reviewed by:	bde
This commit is contained in:
Ruslan Ermilov 2000-01-24 16:14:32 +00:00
parent a342f0f67c
commit 673494c6ca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56538

View File

@ -13,10 +13,10 @@ beforeinstall:
@echo -n "install -d -o ${INFOOWN} -g ${INFOGRP} "
@echo "-m 0755 ${DESTDIR}${INFODIR}"
@exit 3;
.endif
${INSTALL} -c -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} dir-tmpl \
${DESTDIR}${INFODIR}/dir-tmpl
.endif
.if !exists(${DESTDIR}${INFODIR}/dir)
${INSTALL} -c -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} \
dir-tmpl ${DESTDIR}${INFODIR}/dir
.endif
.include <bsd.prog.mk>