aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-10-24 19:22:13 -0700
committerGlenn Morris2013-10-24 19:22:13 -0700
commitda504eec7088eeb698f3987900ed7757363602c3 (patch)
tree37ef3ae0ce35a05505f862488163e97bf7ab105c
parent37241f62069b8f60e28d419ca502dd04ba567ab9 (diff)
downloademacs-da504eec7088eeb698f3987900ed7757363602c3.tar.gz
emacs-da504eec7088eeb698f3987900ed7757363602c3.zip
* configure.ac: It seems _installing_ in non-ASCII is ok, not building.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac10
2 files changed, 7 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 4382f9dcabd..c4fc0b2d045 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12013-10-25 Glenn Morris <rgm@gnu.org>
2
3 * configure.ac: It seems _installing_ in non-ASCII is ok, not building.
4
12013-10-24 Glenn Morris <rgm@gnu.org> 52013-10-24 Glenn Morris <rgm@gnu.org>
2 6
3 * configure.ac: 7 * configure.ac:
diff --git a/configure.ac b/configure.ac
index 7d8cb8815fd..2c1123f3a0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -74,23 +74,19 @@ dnl --program-transform-name options
74AC_ARG_PROGRAM 74AC_ARG_PROGRAM
75 75
76dnl http://debbugs.gnu.org/15260 76dnl http://debbugs.gnu.org/15260
77dnl I think we have to check, eg, both exec_prefix and bindir,
78dnl because the latter by default is not yet expanded, but the user
79dnl may have specified a value for it via --bindir.
80dnl Note that abs_srcdir and abs_builddir are not yet defined. :( 77dnl Note that abs_srcdir and abs_builddir are not yet defined. :(
81 78
82dnl "`cd \"$srcdir\" is not portable. 79dnl "`cd \"$srcdir\"`" is not portable.
83dnl See autoconf manual "Shell Substitutions": 80dnl See autoconf manual "Shell Substitutions":
84dnl "There is just no portable way to use double-quoted strings inside 81dnl "There is just no portable way to use double-quoted strings inside
85dnl double-quoted back-quoted expressions (pfew!)." 82dnl double-quoted back-quoted expressions (pfew!)."
86temp_srcdir=`cd "$srcdir"; pwd` 83temp_srcdir=`cd "$srcdir"; pwd`
87 84
88for var in "`pwd`" "$temp_srcdir" "$prefix" "$exec_prefix" \ 85for var in "`pwd`" "$temp_srcdir"; do
89 "$datarootdir" "$bindir" "$datadir" "$sharedstatedir" "$libexecdir"; do
90 86
91 dnl configure sets LC_ALL=C early on, so this range should work. 87 dnl configure sets LC_ALL=C early on, so this range should work.
92 case "$var" in 88 case "$var" in
93 *[[^\ -~]]*) AC_MSG_ERROR([Emacs cannot be built or installed in a directory whose name contains non-ASCII characters: $var]) ;; 89 *[[^\ -~]]*) AC_MSG_ERROR([Emacs cannot be built in a directory whose name contains non-ASCII characters: $var]) ;;
94 esac 90 esac
95 91
96done 92done