diff options
author | glewis <glewis@FreeBSD.org> | 2002-10-25 05:54:09 +0000 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2002-10-25 05:54:09 +0000 |
commit | 44623b75064d18aece40803f3ec518500f7d4ea0 (patch) | |
tree | c88243face33009d7818be56356ce5b3cedf4985 /java/jdk16 | |
parent | 156843bcd807d113b7612874436055c109b3a889 (diff) | |
download | FreeBSD-ports-44623b75064d18aece40803f3ec518500f7d4ea0.zip FreeBSD-ports-44623b75064d18aece40803f3ec518500f7d4ea0.tar.gz |
. echo -> ${ECHO_MSG}
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 fddc9c1..2fd7e7c 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 |