diff options
author | agc <agc@pkgsrc.org> | 2002-01-17 08:26:41 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-01-17 08:26:41 +0000 |
commit | 12ee4e4492dc54947ea54ae3358d6f22a6bff7f6 (patch) | |
tree | b59f80d2ae095227b9b8f81456ee13cc8d3212f2 /lang | |
parent | ba4784c7609f6f501490ceafc9cda26aece0e6b4 (diff) | |
download | pkgsrc-12ee4e4492dc54947ea54ae3358d6f22a6bff7f6.tar.gz |
Suppress echo of ${ECHO_MSG} statements by make(1).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/dylan-compiler/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/dylan-compiler/Makefile b/lang/dylan-compiler/Makefile index cd914528918..64a85a17e5e 100644 --- a/lang/dylan-compiler/Makefile +++ b/lang/dylan-compiler/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2002/01/16 10:42:49 agc Exp $ +# $NetBSD: Makefile,v 1.3 2002/01/17 08:26:41 agc Exp $ # PKGNAME= dylan-compiler-${DYLAN_VERSION} @@ -11,9 +11,9 @@ AUTOGEN_TARGET= --enable-mindy-bootstrap CONFLICTS= dylan-interpreter-[0-9]* pre-build: - ${ECHO_MSG} "********************************** WARNING ***********************************" - ${ECHO_MSG} "This package takes over 8 hours to build on an 800 MHz PIII with 128 MB memory" - ${ECHO_MSG} "You could try the dylan interpreter, in ${.CURDIR}/../dylan-interpreter" - ${ECHO_MSG} "********************************** WARNING ***********************************" + @${ECHO_MSG} "********************************** WARNING ***********************************" + @${ECHO_MSG} "This package takes over 8 hours to build on an 800 MHz PIII with 128 MB memory" + @${ECHO_MSG} "You could try the dylan interpreter, in ${.CURDIR}/../dylan-interpreter" + @${ECHO_MSG} "********************************** WARNING ***********************************" .include "../dylan-interpreter/Makefile.common" |