diff options
author | bde <bde@FreeBSD.org> | 1995-05-07 05:56:00 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-05-07 05:56:00 +0000 |
commit | a13f92b4f0a8eaa22c56948a7b8210c8d50e7632 (patch) | |
tree | 6be75ee24046b5f9b00f7a6dc2fee904834fac44 | |
parent | f90d96a223fe07183e66b44fdab345980c7d89a9 (diff) | |
download | FreeBSD-src-a13f92b4f0a8eaa22c56948a7b8210c8d50e7632.zip FreeBSD-src-a13f92b4f0a8eaa22c56948a7b8210c8d50e7632.tar.gz |
Silence `make -s' (echo -> ${ECHO}).
-rw-r--r-- | usr.sbin/pcvt/demo/Makefile | 8 | ||||
-rw-r--r-- | usr.sbin/pcvt/fonts/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/kbdio/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/keycap/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/set2061/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/vgaio/Makefile | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/pcvt/demo/Makefile b/usr.sbin/pcvt/demo/Makefile index c34c7f5..79f7397 100644 --- a/usr.sbin/pcvt/demo/Makefile +++ b/usr.sbin/pcvt/demo/Makefile @@ -7,10 +7,10 @@ NOMAN= all: $(DEMOS) $(PROG) install: ${DEMOS} - @echo "to look at the demos, execute:" - @echo " \"cat <filename>.vt\"" - @echo "if it is an animation an it runs too fast, try out:" - @echo " \"playvt -f <filename>.vt -d<some-delay-val>\"" + @${ECHO} "to look at the demos, execute:" + @${ECHO} " \"cat <filename>.vt\"" + @${ECHO} "if it is an animation an it runs too fast, try out:" + @${ECHO} " \"playvt -f <filename>.vt -d<some-delay-val>\"" .include <bsd.prog.mk> diff --git a/usr.sbin/pcvt/fonts/Makefile b/usr.sbin/pcvt/fonts/Makefile index 1bce9e3..e59c513 100644 --- a/usr.sbin/pcvt/fonts/Makefile +++ b/usr.sbin/pcvt/fonts/Makefile @@ -26,7 +26,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 diff --git a/usr.sbin/pcvt/kbdio/Makefile b/usr.sbin/pcvt/kbdio/Makefile index 147e6ad..4576c4e 100644 --- a/usr.sbin/pcvt/kbdio/Makefile +++ b/usr.sbin/pcvt/kbdio/Makefile @@ -29,7 +29,7 @@ CLEANFILES+= y.tab.h CLEANFILES+= y.output # comment file from bison install: - @echo "kbdio is not installed automatically ...." + @${ECHO} "kbdio is not installed automatically ...." .include <bsd.prog.mk> diff --git a/usr.sbin/pcvt/keycap/Makefile b/usr.sbin/pcvt/keycap/Makefile index ceba448..2c5f56f 100644 --- a/usr.sbin/pcvt/keycap/Makefile +++ b/usr.sbin/pcvt/keycap/Makefile @@ -22,7 +22,7 @@ MAN5 = man5/keycap.${MAN5EXT} beforeinstall: @if [ ! -d ${LIBDIR} ]; then mkdir ${LIBDIR};fi - @echo "Saving old keycap database" + @${ECHO} "Saving old keycap database" -mv -f ${DESTDIR}${CAPPATH} ${DESTDIR}${CAPPATH}.BAK install -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \ ${.CURDIR}/${KEYCAPSRC} ${DESTDIR}${CAPPATH} diff --git a/usr.sbin/pcvt/set2061/Makefile b/usr.sbin/pcvt/set2061/Makefile index ac9d317..db71830 100644 --- a/usr.sbin/pcvt/set2061/Makefile +++ b/usr.sbin/pcvt/set2061/Makefile @@ -6,7 +6,7 @@ NOMAN= all: $(PROG) install: ${DEMOS} - @echo "set2061 is not installed automatically ...." + @${ECHO} "set2061 is not installed automatically ...." .include <bsd.prog.mk> diff --git a/usr.sbin/pcvt/vgaio/Makefile b/usr.sbin/pcvt/vgaio/Makefile index ded8bdf..de3e661 100644 --- a/usr.sbin/pcvt/vgaio/Makefile +++ b/usr.sbin/pcvt/vgaio/Makefile @@ -29,7 +29,7 @@ CLEANFILES+= y.tab.h CLEANFILES+= y.output # comment file from bison install: - @echo "vgaio is not installed automatically ...." + @${ECHO} "vgaio is not installed automatically ...." .include <bsd.prog.mk> |