emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114791: * configure.ac: It seems _installing_ in no


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114791: * configure.ac: It seems _installing_ in non-ASCII is ok, not building.
Date: Fri, 25 Oct 2013 02:22:18 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114791
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-10-24 19:22:13 -0700
message:
  * configure.ac: It seems _installing_ in non-ASCII is ok, not building.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-10-24 23:04:33 +0000
+++ b/ChangeLog 2013-10-25 02:22:13 +0000
@@ -1,3 +1,7 @@
+2013-10-25  Glenn Morris  <address@hidden>
+
+       * configure.ac: It seems _installing_ in non-ASCII is ok, not building.
+
 2013-10-24  Glenn Morris  <address@hidden>
 
        * configure.ac:

=== modified file 'configure.ac'
--- a/configure.ac      2013-10-24 23:04:33 +0000
+++ b/configure.ac      2013-10-25 02:22:13 +0000
@@ -74,23 +74,19 @@
 AC_ARG_PROGRAM
 
 dnl http://debbugs.gnu.org/15260
-dnl I think we have to check, eg, both exec_prefix and bindir,
-dnl because the latter by default is not yet expanded, but the user
-dnl may have specified a value for it via --bindir.
 dnl Note that abs_srcdir and abs_builddir are not yet defined. :(
 
-dnl "`cd \"$srcdir\" is not portable.
+dnl "`cd \"$srcdir\"`" is not portable.
 dnl See autoconf manual "Shell Substitutions":
 dnl "There is just no portable way to use double-quoted strings inside
 dnl double-quoted back-quoted expressions (pfew!)."
 temp_srcdir=`cd "$srcdir"; pwd`
 
-for var in "`pwd`" "$temp_srcdir" "$prefix" "$exec_prefix" \
-    "$datarootdir" "$bindir" "$datadir" "$sharedstatedir" "$libexecdir"; do
+for var in "`pwd`" "$temp_srcdir"; do
 
   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 in a directory whose name 
contains non-ASCII characters: $var]) ;;
   esac
 
 done


reply via email to

[Prev in Thread] Current Thread [Next in Thread]