diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:16:28 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:16:28 +0800 |
commit | 683084ba5b0a2fbaac959371c452814420e77ba6 (patch) | |
tree | 708e7807b36deea4f04ea6f9464e4e09d8b04ab2 /devel/sdl10 | |
parent | 6fd54384344c267d40b400ec310d64528228d10c (diff) | |
download | freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.tar.gz freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.tar.zst freebsd-ports-gnome-683084ba5b0a2fbaac959371c452814420e77ba6.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 'devel/sdl10')
-rw-r--r-- | devel/sdl10/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/sdl10/Makefile b/devel/sdl10/Makefile index 308ed4c1bafd..cb6933dd24f4 100644 --- a/devel/sdl10/Makefile +++ b/devel/sdl10/Makefile @@ -42,7 +42,7 @@ post-install: .for file in BUGS COPYING CREDITS README WhatsNew docs.html ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/SDL .endfor - cd ${WRKSRC}/docs; tar cf - `${ECHO} [^M]*` | \ + cd ${WRKSRC}/docs; ${TAR} cf - `${ECH_CMDO} [^M]*` | \ (cd ${PREFIX}/share/doc/SDL; ${TAR} --unlink -xf - ) .endif |