diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 05:14:04 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 05:14:04 +0800 |
commit | 981aafd51d07e05ddd72e92094db0a39a35d8a23 (patch) | |
tree | 72d3d7150282d19ce68e2126dc5e731712d27a03 /editors/vile | |
parent | e478897177c3c4652e7277c09503273dfff9dd3a (diff) | |
download | freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.tar.gz freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.tar.zst freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.zip |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'editors/vile')
-rw-r--r-- | editors/vile/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/vile/Makefile b/editors/vile/Makefile index a6a85272b4d1..ba74013a6b3a 100644 --- a/editors/vile/Makefile +++ b/editors/vile/Makefile @@ -27,8 +27,8 @@ USE_PERL5= yes pre-configure: .if ! defined(USE_PERL) - @echo "Define USE_PERL if you want to make a vile which includes" - @echo "PERL functionality" + @${ECHO_MSG} "Define USE_PERL if you want to make a vile which includes" + @${ECHO_MSG} "PERL functionality" .endif post-install: @@ -42,7 +42,7 @@ post-install: .if defined(USE_PERL) ${INSTALL_DATA} ${WRKSRC}/*.doc ${PREFIX}/share/doc/vile .endif - @echo "Look in ${PREFIX}/share/doc/vile for documentation." - @echo "Look in ${PREFIX}/share/vile/macros for macros." + @${ECHO_MSG} "Look in ${PREFIX}/share/doc/vile for documentation." + @${ECHO_MSG} "Look in ${PREFIX}/share/vile/macros for macros." .include <bsd.port.mk> |