From 0a8cb0c4a586951b7cd2ca13d92b5a3c6b48e5d7 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Mon, 17 Apr 1995 19:28:45 +0000 Subject: [PATCH] Missing ${DESTDIR} added 4 places, pcvt's Makefiles are a crock! --- usr.sbin/pcvt/fonts/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/pcvt/fonts/Makefile b/usr.sbin/pcvt/fonts/Makefile index d707aa83af91..1bce9e3b902d 100644 --- a/usr.sbin/pcvt/fonts/Makefile +++ b/usr.sbin/pcvt/fonts/Makefile @@ -24,11 +24,11 @@ CLEANFILES= ${FONTS} all: $(FONTS) install: ${FONTS} - @if [ ! -d ${FONTDIR} ]; then mkdir ${FONTDIR};fi + @if [ ! -d ${DESTDIR}${FONTDIR} ]; then mkdir ${DESTDIR}${FONTDIR};fi @for i in ${FONTS}; do \ - echo "installing font $$i into ${FONTDIR}"; \ + echo "installing font $$i into ${DESTDIR}${FONTDIR}"; \ install -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \ - $$i ${FONTDIR}; \ + $$i ${DESTDIR}${FONTDIR}; \ done clean: