diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 09:45:01 +0000 |
commit | c8eb0d48785c0ccaefec1e6760abc6623f08d233 (patch) | |
tree | 22976d84e83439a4ed13de075a5a82fe1d68b428 /databases/py-MySQL/Makefile | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (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.
Notes
Notes:
svn path=/head/; revision=53949
Diffstat (limited to 'databases/py-MySQL/Makefile')
-rw-r--r-- | databases/py-MySQL/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/py-MySQL/Makefile b/databases/py-MySQL/Makefile index 17065d7ce0ea..44190d680c90 100644 --- a/databases/py-MySQL/Makefile +++ b/databases/py-MySQL/Makefile @@ -39,8 +39,8 @@ do-configure: post-install: @${MKDIR} ${PREFIX}/share/doc/py-MySQL @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-MySQL - @${ECHO} "share/doc/py-MySQL/README" >> ${TMPPLIST} - @${ECHO} "@dirrm share/doc/py-MySQL" >> ${TMPPLIST} + @${ECHO_CMD} "share/doc/py-MySQL/README" >> ${TMPPLIST} + @${ECHO_CMD} "@dirrm share/doc/py-MySQL" >> ${TMPPLIST} .endif @${CAT} ${PKGMESSAGE} |