diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
commit | b8f8618362b39a01e2225feef7d298fb22cafe2f (patch) | |
tree | 67a28a0746219c11b5e630daec412185165d3ed9 /security/crack | |
parent | 3927b01845af9489e456e36e73d2511621daea90 (diff) | |
download | ports-b8f8618362b39a01e2225feef7d298fb22cafe2f.tar.gz ports-b8f8618362b39a01e2225feef7d298fb22cafe2f.zip |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Notes
Notes:
svn path=/head/; revision=21034
Diffstat (limited to 'security/crack')
-rw-r--r-- | security/crack/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/crack/Makefile b/security/crack/Makefile index ae7fddfe6cf3..7064ed682c30 100644 --- a/security/crack/Makefile +++ b/security/crack/Makefile @@ -5,7 +5,7 @@ # Whom: David O'Brien <obrien@FreeBSD.org> # Whom: Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp> # -# $Id: Makefile,v 1.6 1997/11/26 01:42:55 obrien Exp $ +# $Id: Makefile,v 1.7 1998/10/10 03:42:59 steve Exp $ # DISTNAME= crack5.0 @@ -27,12 +27,12 @@ pre-configure: @/bin/mv -f ${WRKSRC}/src/util/elcid.c ${WRKSRC}/src/util/elcid.c.orig @${CP} -p ${WRKSRC}/src/util/elcid.c,bsd ${WRKSRC}/src/util/elcid.c .endif - @echo "XLIB+= -lcrypt" >> ${WRKSRC}/src/util/Makefile + @${ECHO} "XLIB+= -lcrypt" >> ${WRKSRC}/src/util/Makefile pre-build: @(if [ ! -f /usr/share/dict/words ];then \ - echo "You may want to install the dict distribution into /usr/share/dict" ; \ - echo "to increase the size of the cracking dictionary." ; \ + ${ECHO_MSG} "You may want to install the dict distribution into /usr/share/dict" ; \ + ${ECHO_MSG} "to increase the size of the cracking dictionary." ; \ fi) do-build: |