diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 19:24:09 +0800 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 19:24:09 +0800 |
commit | c982f5faf1c27ba011ef14e71aadc2182660d704 (patch) | |
tree | 2b0b412c02b07adeb72e10a7417749a64cea16ec /lang/cyclone | |
parent | 0b1020495087240f21a4fa421e92e457fc065310 (diff) | |
download | freebsd-ports-gnome-c982f5faf1c27ba011ef14e71aadc2182660d704.tar.gz freebsd-ports-gnome-c982f5faf1c27ba011ef14e71aadc2182660d704.tar.zst freebsd-ports-gnome-c982f5faf1c27ba011ef14e71aadc2182660d704.zip |
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.
Use command macros where appropriate.
Diffstat (limited to 'lang/cyclone')
-rw-r--r-- | lang/cyclone/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/cyclone/Makefile b/lang/cyclone/Makefile index f92c1948c38d..839d209c16dc 100644 --- a/lang/cyclone/Makefile +++ b/lang/cyclone/Makefile @@ -39,7 +39,7 @@ post-patch: .endif do-configure: - @cd ${CONFIGURE_WRKSRC} && ${ECHO} y | ./configure ${CONFIGURE_ARGS} + @cd ${CONFIGURE_WRKSRC} && ${ECHO_CMD} y | ./configure ${CONFIGURE_ARGS} post-build: .for target in cyclone_src update build test |