diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:58:52 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:58:52 +0000 |
commit | 77f6c01ede076821a0791ed785bded77734e07d9 (patch) | |
tree | 32f6b967d4af1824b6eee01059853d1ba5d523d0 /security/checkpassword | |
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.
Diffstat (limited to 'security/checkpassword')
-rw-r--r-- | security/checkpassword/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/checkpassword/Makefile b/security/checkpassword/Makefile index ba40ce9da892..be67fe17026f 100644 --- a/security/checkpassword/Makefile +++ b/security/checkpassword/Makefile @@ -23,8 +23,8 @@ DOCDIR= ${PREFIX}/share/doc/checkpassword .SILENT: do-configure: - ${ECHO} 'cc -s -lcrypt' > ${WRKSRC}/conf-ld - ${ECHO} ${PREFIX} >${WRKSRC}/conf-home + ${ECHO_CMD} 'cc -s -lcrypt' > ${WRKSRC}/conf-ld + ${ECHO_CMD} ${PREFIX} >${WRKSRC}/conf-home post-install: # ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${PREFIX}/man/man8 |