summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2001-03-02 00:59:28 +0000
committermickey <mickey@openbsd.org>2001-03-02 00:59:28 +0000
commitec433cedd14b44e75e37415ee25d5f3e2de5b7f1 (patch)
treee9f31cee897a72fca36cc34be9b7f85cd4370b10
parentthese are fonts from pcvt we had (diff)
downloadwireguard-openbsd-ec433cedd14b44e75e37415ee25d5f3e2de5b7f1.tar.xz
wireguard-openbsd-ec433cedd14b44e75e37415ee25d5f3e2de5b7f1.zip
use echo proper
-rw-r--r--share/misc/pcvtfonts/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/misc/pcvtfonts/Makefile b/share/misc/pcvtfonts/Makefile
index e45a09fd6f3..be34c7298df 100644
--- a/share/misc/pcvtfonts/Makefile
+++ b/share/misc/pcvtfonts/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2001/03/02 00:43:13 mickey Exp $
+# $OpenBSD: Makefile,v 1.2 2001/03/02 00:59:28 mickey Exp $
FONTS = vt220l.814 vt220h.814 vt220l.808 vt220h.808 \
vt220l.816 vt220h.816 vt220l.810 vt220h.810 \
@@ -16,7 +16,7 @@ all: $(FONTS)
install: ${FONTS}
@if [ ! -d ${DESTDIR}${FONTDIR} ]; then mkdir ${DESTDIR}${FONTDIR};fi
@for i in ${FONTS}; do \
- ${ECHO} "installing font $$i into ${DESTDIR}${FONTDIR}"; \
+ echo "installing font $$i into ${DESTDIR}${FONTDIR}"; \
install -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \
$$i ${DESTDIR}${FONTDIR}; \
done