Skip to content

Commit b942928

Browse files
committed
Fix MULTIBYTE typo.
1 parent 77cce4e commit b942928

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/configure.in

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,20 +190,19 @@ AC_ARG_ENABLE(
190190
AC_MSG_RESULT(disabled)
191191
)
192192

193-
AC_MSG_CHECKING(setting MULTIBYE)
193+
AC_MSG_CHECKING(setting MULTIBYTE)
194194
AC_ARG_WITH(mb,
195195
[ --with-mb=<encoding> enable multi-byte support ],
196196
[
197197
case "$withval" in
198198
EUC_JP|EHC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5)
199-
MULTIBYTE="$withval";
200199
AC_MSG_RESULT("enabled with $withval")
201200
;;
202201
*)
203202
AC_MSG_ERROR([*** You must supply an argument to the --with-mb option one of EUC_JP,EHC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5])
204203
;;
205204
esac
206-
MULTIBYTEB="$withval"
205+
MULTIBYTE="$withval"
207206
],
208207
AC_MSG_RESULT("disabled")
209208
)

0 commit comments

Comments
 (0)