summaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-09-24 17:30:13 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-09-24 17:30:13 +0000
commit0ed9667e47567d92e132ecfe5ef1d456e01710c9 (patch)
tree6298381c1b0921c125a2e10f19f47303e1ff8985 /x11-toolkits
parent- change ECHO -> ECHO_MSG (diff)
- change ECHO -> ECHO_CMD
Notes
Notes: svn path=/head/; revision=89256
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/lesstif/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/x11-toolkits/lesstif/Makefile b/x11-toolkits/lesstif/Makefile
index b8708129c4a5..9a18da4ebb78 100644
--- a/x11-toolkits/lesstif/Makefile
+++ b/x11-toolkits/lesstif/Makefile
@@ -57,19 +57,19 @@ MAN5 = VirtualBindings.5 mwmrc.5
.if defined(HAVE_MOTIF) && !defined(PARALLEL_PACKAGE_BUILD)
IS_INTERACTIVE= yes
pre-extract:
- @${ECHO} "***********************************************************"
- @${ECHO} "* W a r n i n g *"
- @${ECHO} "* This port will overwrite your Motif installation. *"
- @${ECHO} "***********************************************************"
- @${ECHO} -n "Is this ok? (y/n) ==> "
+ @${ECHO_CMD} "***********************************************************"
+ @${ECHO_CMD} "* W a r n i n g *"
+ @${ECHO_CMD} "* This port will overwrite your Motif installation. *"
+ @${ECHO_CMD} "***********************************************************"
+ @${ECHO_CMD} -n "Is this ok? (y/n) ==> "
@(read ans; \
case x"$$ans" in \
xy*|xY*) \
return 0; \
;; \
*) \
- ${ECHO} "Okay, I won't install it then...."; \
- ${ECHO} "(Don't worry about the following \"*** Error code 1's)"; \
+ ${ECHO_CMD} "Okay, I won't install it then...."; \
+ ${ECHO_CMD} "(Don't worry about the following \"*** Error code 1's)"; \
return 1; \
;; \
esac)