summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2001-03-02 00:59:29 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2001-03-02 00:59:29 +0000
commit4680291a0250c52526b64e9e978445bff3acc4f6 (patch)
tree022b69ec5cd13621df8d803be8fd37a6737f870d /share
parentc15b2ce32e999e143b9e5dca408061cddbe8d736 (diff)
use echo proper
Diffstat (limited to 'share')
-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