1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Use the default LIBOWN, etc. instead of clobbering the defaults to bin,

etc., so that (this part of) `LIBOWN=... make world' can be run by users
other than root.  Actually, BINOWN instead of LIBOWN, since fonts are not
libraries.  Only one owner of (non-setuid) installed files is really
supported.
This commit is contained in:
Bruce Evans 1997-12-17 12:31:58 +00:00
parent 45c9cb5439
commit 6935938329
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31805

View File

@ -15,9 +15,6 @@ error:
FONTS = vt220l.814 vt220h.814 vt220l.808 vt220h.808 \
vt220l.816 vt220h.816 vt220l.810 vt220h.810
LIBMODE = 644
LIBOWN = bin
LIBGRP = bin
CLEANFILES= ${FONTS}
all: $(FONTS)
@ -26,7 +23,7 @@ install: ${FONTS}
@if [ ! -d ${DESTDIR}${FONTDIR} ]; then mkdir ${DESTDIR}${FONTDIR};fi
@for i in ${FONTS}; do \
${ECHO} "installing font $$i into ${DESTDIR}${FONTDIR}"; \
${INSTALL} ${COPY} -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
$$i ${DESTDIR}${FONTDIR}; \
done