From dc799360fed6506585e220b98bbcef37d2bf518c Mon Sep 17 00:00:00 2001 From: mycroft Date: Sun, 18 Jul 1993 19:44:28 +0000 Subject: [PATCH] Use ${COPY}, not -c for install for generated files. --- gnu/usr.bin/groff/devices/Makefile.dev | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/usr.bin/groff/devices/Makefile.dev b/gnu/usr.bin/groff/devices/Makefile.dev index 8fa595eb2dfa..2bdec1b654d4 100644 --- a/gnu/usr.bin/groff/devices/Makefile.dev +++ b/gnu/usr.bin/groff/devices/Makefile.dev @@ -20,6 +20,8 @@ all: $(FONTFILES) .if !target(clean) clean cleandir: -rm -f $(FONTFILES) +.else +COPY= -c .endif .if !target(install) @@ -30,7 +32,7 @@ install: $(DEVICEDIR)/generate; \ fi -for f in $(FONTFILES); do \ - install -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$f \ + install ${COPY} -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$f \ $(DEVICEDIR)/$$f; \ done .endif