diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:16:28 +0000 |
commit | 32c83edfbcce207c560685385be28ffc02faad2c (patch) | |
tree | 8b9a9aef75ca0c44c811a5951f9fc90aec5e4c56 /devel/p5-Term-Screen/Makefile | |
parent | Update to 2.4.13. (diff) |
Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
Use command macros where appropriate.
Notes
Notes:
svn path=/head/; revision=53952
Diffstat (limited to 'devel/p5-Term-Screen/Makefile')
-rw-r--r-- | devel/p5-Term-Screen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/p5-Term-Screen/Makefile b/devel/p5-Term-Screen/Makefile index 3b9c48cae05a..532b4b7c5d20 100644 --- a/devel/p5-Term-Screen/Makefile +++ b/devel/p5-Term-Screen/Makefile @@ -29,9 +29,9 @@ do-install: ${MKDIR} ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Term ${INSTALL_SCRIPT} ${WRKSRC}/Screen.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Term ${MKDIR} ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/auto/Term/Screen - ${ECHO} '${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Term/Screen.pm' >> \ + ${ECHO_CMD} '${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Term/Screen.pm' >> \ ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/auto/Term/Screen/.packlist - ${ECHO} '${MAN3PREFIX}/man/man3/${MAN3}' >> \ + ${ECHO_CMD} '${MAN3PREFIX}/man/man3/${MAN3}' >> \ ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/auto/Term/Screen/.packlist .include <bsd.port.mk> |