summaryrefslogtreecommitdiff
path: root/editors/mule
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 10:34:23 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 10:34:23 +0000
commit5406488640c9d4292c7a5349facb9e09d7fb04dc (patch)
tree315682ed881cd935b54d89a2f4bd722649e9d38c /editors/mule
parentUse ${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=53953
Diffstat (limited to 'editors/mule')
-rw-r--r--editors/mule/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/mule/Makefile b/editors/mule/Makefile
index ccd1e758094b..81ad7ab1da03 100644
--- a/editors/mule/Makefile
+++ b/editors/mule/Makefile
@@ -94,7 +94,7 @@ COMP_ELC= egg.elc wnn-egg.elc sj3-client.elc sj3-egg.elc canna.elc
ELC_DIR= ../lisp
# Make a value of INPUT_METHOD
.if defined(INPUT_METHOD)
-INPUT_METHOD!= ${ECHO} ${INPUT_METHOD} | sed -e 's/^/-/' -e 's/ /+/g'
+INPUT_METHOD!= ${ECHO_CMD} ${INPUT_METHOD} | sed -e 's/^/-/' -e 's/ /+/g'
.endif