diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | bc07afc1c299155a3451d285f1e3c862af0c8e83 (patch) | |
tree | 1fecad8c5762f1c1f723e927775d4b37b5a0f7d9 /german/citrix_ica | |
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.
Use command macros where appropriate.
Notes
Notes:
svn path=/head/; revision=53954
Diffstat (limited to 'german/citrix_ica')
-rw-r--r-- | german/citrix_ica/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/german/citrix_ica/Makefile b/german/citrix_ica/Makefile index 26308f45817b..c2f45e5acc94 100644 --- a/german/citrix_ica/Makefile +++ b/german/citrix_ica/Makefile @@ -52,13 +52,13 @@ do-install: ${FALSE} ; \ fi - @${ECHO} -e "1\n${CDIR}\nj\nj\nj\nj\n3" > ${WRKSRC}/response ; + @${ECHO_CMD} -e "1\n${CDIR}\nj\nj\nj\nj\n3" > ${WRKSRC}/response ; @for dir in ${NSCP}; do \ if [ -e $${dir}/plugins/libnullplugin.so ]; then \ BIN=`${FILE} $${dir}/plugins/libnullplugin.so | ${AWK} '{print $$11}'` ; \ case $${BIN} in \ \(SYSV\),) \ - ${ECHO} -e "1\n${CDIR}\nj\nj\nj\n3" > ${WRKSRC}/response ; \ + ${ECHO_CMD} -e "1\n${CDIR}\nj\nj\nj\n3" > ${WRKSRC}/response ; \ esac \ fi \ done |