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 /x11-toolkits | |
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 'x11-toolkits')
-rw-r--r-- | x11-toolkits/plib/Makefile | 4 | ||||
-rw-r--r-- | x11-toolkits/v/Makefile | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/x11-toolkits/plib/Makefile b/x11-toolkits/plib/Makefile index 1aaf20a95525..ecd7a5ab241a 100644 --- a/x11-toolkits/plib/Makefile +++ b/x11-toolkits/plib/Makefile @@ -3,7 +3,7 @@ # Date created: 26 June 1999 # Whom: Brian Buchanan <brian@CSUA.Berkeley.EDU> # -# $Id: Makefile,v 1.3 1999/08/17 19:37:11 cpiazza Exp $ +# $Id: Makefile,v 1.4 1999/08/22 19:46:45 cpiazza Exp $ # DISTNAME= plib-1.0.12a @@ -31,7 +31,7 @@ MAN1= calibrate.1 pre-build: @(cd ${WRKDIR}/calibrate-0.0.1; ${MAKE}) - @echo "${PREFIX}" + @${ECHO_MSG} "${PREFIX}" pre-install: @(cd ${WRKDIR}/calibrate-0.0.1; ${MAKE} PREFIX=${PREFIX} install) diff --git a/x11-toolkits/v/Makefile b/x11-toolkits/v/Makefile index 70b6aee11d25..a26a6b87e3d2 100644 --- a/x11-toolkits/v/Makefile +++ b/x11-toolkits/v/Makefile @@ -3,7 +3,7 @@ # Date created: 8 Feb 1998 # Whom: Donald Burr <dburr@FreeBSD.ORG> # -# $Id: Makefile,v 1.10 1999/06/22 17:30:06 steve Exp $ +# $Id: Makefile,v 1.11 1999/08/22 19:01:01 mharo Exp $ # DISTNAME= v-1.19 @@ -32,14 +32,14 @@ pre-build: post-install: ${RANLIB} ${PREFIX}/lib/libV.a .ifdef NOPORTDOCS - @echo "==> Extra documentation WILL NOT be installed." + @${ECHO_MSG} "==> Extra documentation WILL NOT be installed." .else - @echo "==> Installing extra docs under ${PREFIX}/share/doc/v..." + @${ECHO_MSG} "==> Installing extra docs under ${PREFIX}/share/doc/v..." ${MKDIR} ${PREFIX}/share/doc/v ${CP} -R ${WRKSRC}/doc/* ${PREFIX}/share/doc/v find ${PREFIX}/share/doc/v -type d -exec ${CHMOD} 755 {} \; find ${PREFIX}/share/doc/v -type f -exec ${CHMOD} 644 {} \; - @echo "==> Extra docs installed. Note, you will need *tex to read 'em." + @${ECHO_MSG} "==> Extra docs installed. Note, you will need *tex to read 'em." .endif @${CAT} ${PKGDIR}/MESSAGE |