1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-22 15:47:37 +00:00

Fix typo, add -c to install so that files aren't moved out on first

install! :-)
This commit is contained in:
Jordan K. Hubbard 1994-09-15 12:10:03 +00:00
parent 4db3aa263c
commit b25b5fa574
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2794

View File

@ -2,17 +2,15 @@
# Makefile for INFO files
#
INFOFILES+= dir info.info makeinfo.info texi.info texi.info-1 texi.inf-2
INFOFILES+= dir info.info makeinfo.info texi.info texi.info-1 texi.info-2
INFOFILES+= texi.info-3 texi.info-4 texi.info-5 texi.info-6 texi.info-7
INFOFILES+= texi.info-8 texi.info-9 texi.info-10 texi.info-11
install:
mkdir -p ${INFODIR}
install -g ${BINGRP} -o ${BINOWN} -m 444 ${INFOFILES} ${INFODIR}
install -c -g ${BINGRP} -o ${BINOWN} -m 444 ${INFOFILES} ${INFODIR}
clean:
cleandir:
obj:
clean cleandir obj:
@echo -n
.include <bsd.prog.mk>