diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2002-10-25 05:54:09 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2002-10-25 05:54:09 +0000 |
commit | bb279e9df75429f0d055f2880efee7829025df55 (patch) | |
tree | 56160305c312fac70873f5bf7a2097b90f98b5d0 /java/jdk16 | |
parent | be1315e7fd578420c988905dda8202e9a0ac478f (diff) |
. echo -> ${ECHO_MSG}
Notes
Notes:
svn path=/head/; revision=68769
Diffstat (limited to 'java/jdk16')
-rw-r--r-- | java/jdk16/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/java/jdk16/Makefile b/java/jdk16/Makefile index fddc9c1f996d..2fd7e7c70699 100644 --- a/java/jdk16/Makefile +++ b/java/jdk16/Makefile @@ -145,18 +145,18 @@ pre-build: -L "/compat/linux/$${WRKDIRPREFIX}" -a \ x`ls -ld "/compat/linux/$${WRKDIRPREFIX}" 2>/dev/null | awk '/->/{print $$NF;exit 0}END{exit 1}'` = x"$${WRKDIRPREFIX}" ]; \ then \ - echo "Please set WRKDIRPREFIX to something which doesn't"; \ - echo "have a matching symbolic link in /compat/linux."; \ - echo "This is known to cause problems during bootstrapping."; \ + ${ECHO_MSG} "Please set WRKDIRPREFIX to something which doesn't"; \ + ${ECHO_MSG} "have a matching symbolic link in /compat/linux."; \ + ${ECHO_MSG} "This is known to cause problems during bootstrapping."; \ exit 1; \ fi @if [ `sysctl -n compat.linux.osname` != "Linux" ]; \ then \ - echo "Please set the value of the sysctl compat.linux.osname"; \ - echo "to 'Linux' with the command:"; \ - echo " sysctl compat.linux.osname=Linux"; \ - echo "Having it set to other values, such as 'FreeBSD',"; \ - echo "is known to cause problems during bootstrapping."; \ + ${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \ + ${ECHO_MSG} "to 'Linux' with the command:"; \ + ${ECHO_MSG} " sysctl compat.linux.osname=Linux"; \ + ${ECHO_MSG} "Having it set to other values, such as 'FreeBSD',"; \ + ${ECHO_MSG} "is known to cause problems during bootstrapping."; \ exit 1; \ fi .endif |