diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
commit | 897d06aa9731645e0a7fa7c315028dcdbfa3c798 (patch) | |
tree | 485cefa9621a788f5d27ac4dcab7fc6aa9843be6 /math/pygist | |
parent | Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (diff) |
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.
Diffstat (limited to 'math/pygist')
-rw-r--r-- | math/pygist/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/pygist/Makefile b/math/pygist/Makefile index 9442c5c5705a..46ba62d92d51 100644 --- a/math/pygist/Makefile +++ b/math/pygist/Makefile @@ -46,7 +46,7 @@ post-install: @${MKDIR} ${GISTDIR} ${INSTALL_DATA} ${WRKSRC}/*/Lib/* ${GISTDIR} @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${GISTDIR} - @${ECHO} "PyGist" > ${GISTDIR}/../PyGist.pth + @${ECHO_CMD} "PyGist" > ${GISTDIR}/../PyGist.pth ${MKDIR} ${EXAMPLEDIR} ${INSTALL_DATA} ${WRKSRC}/*/Demo/* ${EXAMPLEDIR} |