From 09afca189e07f3355b4486a29d0b4142b240e0c8 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 18 Nov 2012 14:27:50 -0800 Subject: [PATCH] Deprecate the -8 option since we don't support 8-bit builds anymore. --- bin/build-all.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/build-all.sh b/bin/build-all.sh index 4585f37c3..7cf7c888b 100755 --- a/bin/build-all.sh +++ b/bin/build-all.sh @@ -29,7 +29,7 @@ usage () echo ' -v v Use the given string as the version.' echo " -o x Use specified Lisp to build unicode version." echo " (only applicable for build 1)" - echo " -8 x Use specified Lisp to build 8-bit version." + echo " -8 x DEPRECATED: Use specified Lisp to build 8-bit version." echo " (only applicable for build 1)" echo " -U Update and overwite the translations files." echo " -P On the last build, (re)generate cmucl.pot and the" @@ -47,7 +47,8 @@ do B) bootfiles="$bootfiles -B $OPTARG" ;; C) CREATE_OPT="$OPTARG" ;; o) OLDLISP="$OPTARG" ;; - 8) OLD8="$OPTARG" ;; + 8) OLD8="$OPTARG" + echo "WARNING: -8 is deprecated";; v) VERSION="$OPTARG"; VERSION_SET=true ;; U) UPDATE_TRANS="-U" ;; P) UPDATE_POT="" ;; -- GitLab