diff options
author | reed <reed@pkgsrc.org> | 2004-04-30 04:16:37 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-04-30 04:16:37 +0000 |
commit | dcc591bbd04004d50bfebc41e0f5c0a4cce3c117 (patch) | |
tree | 2064bebf779019f24c8b036853b7fc54b2340fe7 | |
parent | c9c75b9a24939e8c5ef3c4840cf759a6dcd0129e (diff) | |
download | pkgsrc-dcc591bbd04004d50bfebc41e0f5c0a4cce3c117.tar.gz |
Use the shell's builtin echo instead of /bin/echo.
-rw-r--r-- | mk/defs.Linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk index fb41e6be51f..a0a5abf7ed6 100644 --- a/mk/defs.Linux.mk +++ b/mk/defs.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Linux.mk,v 1.69 2004/04/19 20:19:46 jmmv Exp $ +# $NetBSD: defs.Linux.mk,v 1.70 2004/04/30 04:16:37 reed Exp $ # # Variable definitions for the Linux operating system. @@ -22,7 +22,7 @@ CUT?= /usr/bin/cut DATE?= /bin/date DC?= /usr/bin/dc DIRNAME?= /usr/bin/dirname -ECHO?= /bin/echo +ECHO?= echo # Shell builtin ECHO_N?= ${ECHO} -n .if exists(/bin/egrep) EGREP?= /bin/egrep |