* configure.ac: Use [!...] rather than [^...], for ksh. (Bug#15769)

This commit is contained in:
Glenn Morris 2013-10-31 17:39:10 -04:00
parent 1affc48a70
commit cb16270e14
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-10-31 Glenn Morris <rgm@gnu.org>
* configure.ac: Use [!...] rather than [^...], for ksh. (Bug#15769)
2013-10-30 Glenn Morris <rgm@gnu.org>
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):

View file

@ -92,7 +92,7 @@ for var in "`pwd`" "$temp_srcdir" "$prefix" "$exec_prefix" \
dnl configure sets LC_ALL=C early on, so this range should work.
case "$var" in
*[[^\ -~]]*) AC_MSG_ERROR([Emacs cannot be built or installed in a directory whose name contains non-ASCII characters: $var]) ;;
*[[!\ -~]]*) AC_MSG_ERROR([Emacs cannot be built or installed in a directory whose name contains non-ASCII characters: $var]) ;;
esac
done