diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 21:14:04 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 21:14:04 +0000 |
commit | 58942bab6dbee58f4bff47b5f7888deb6d9b99ac (patch) | |
tree | 49358e580db3691ebac42073ffddffb50c910f99 /editors/xvile | |
parent | portlint (diff) |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'editors/xvile')
-rw-r--r-- | editors/xvile/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/xvile/Makefile b/editors/xvile/Makefile index 895f712bf577..2d52711b3b0c 100644 --- a/editors/xvile/Makefile +++ b/editors/xvile/Makefile @@ -24,10 +24,10 @@ MAN1= xvile.1 pre-configure: .if ! defined(USE_MENUS) - @echo "To use xvile with menus, set the environment variable USE_MENUS" + @${ECHO_MSG} "To use xvile with menus, set the environment variable USE_MENUS" .endif .if ! defined(USE_PERL) - @echo "To use xvile with PERL, set the environment variable USE_PERL" + @${ECHO_MSG} "To use xvile with PERL, set the environment variable USE_PERL" .endif .if defined(USE_MENUS) @@ -53,7 +53,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> |