diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 11:24:09 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 11:24:09 +0000 |
commit | f6e00c6523a54ccae8d9221d4c43c1bebbe1592d (patch) | |
tree | 31ce147ffecf3f2de724e507ca8926196bdc04cd /lang/f77 | |
parent | 2a436f8061602989d2bc9da2badeb810b25743fe (diff) | |
download | FreeBSD-ports-f6e00c6523a54ccae8d9221d4c43c1bebbe1592d.zip FreeBSD-ports-f6e00c6523a54ccae8d9221d4c43c1bebbe1592d.tar.gz |
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/f77')
-rw-r--r-- | lang/f77/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/f77/Makefile b/lang/f77/Makefile index 44d09c3..375427a 100644 --- a/lang/f77/Makefile +++ b/lang/f77/Makefile @@ -38,7 +38,7 @@ MAN1= ${F77NAME}.1 PLIST= ${WRKDIR}/PLIST do-install: - @${ECHO} 'bin/${F77NAME}' > ${PLIST} + @${ECHO_CMD} 'bin/${F77NAME}' > ${PLIST} ${INSTALL_PROGRAM} ${WRKSRC}/f77 ${PREFIX}/bin/${F77NAME} @${SED} -e 's/F77/${F77NAME}/g' -e 's/f77/${F77NAME}/g' \ ${WRKSRC}/f77.1 > ${WRKSRC}/${F77NAME}.1 |