diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 19:24:09 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 19:24:09 +0800 |
commit | f6e00c6523a54ccae8d9221d4c43c1bebbe1592d (patch) | |
tree | 31ce147ffecf3f2de724e507ca8926196bdc04cd /lang/cyclone | |
parent | 2a436f8061602989d2bc9da2badeb810b25743fe (diff) | |
download | freebsd-ports-gnome-f6e00c6523a54ccae8d9221d4c43c1bebbe1592d.tar.gz freebsd-ports-gnome-f6e00c6523a54ccae8d9221d4c43c1bebbe1592d.tar.zst freebsd-ports-gnome-f6e00c6523a54ccae8d9221d4c43c1bebbe1592d.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 |