emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#15769: closed (building on OpenBSD fails because o


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#15769: closed (building on OpenBSD fails because of a shell pattern problem)
Date: Thu, 31 Oct 2013 21:43:01 +0000

Your message dated Thu, 31 Oct 2013 17:42:29 -0400
with message-id <address@hidden>
and subject line Re: bug#15769: building on OpenBSD fails because of a shell 
pattern problem
has caused the debbugs.gnu.org bug report #15769,
regarding building on OpenBSD fails because of a shell pattern problem
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
15769: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15769
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: building on OpenBSD fails because of a shell pattern problem Date: Thu, 31 Oct 2013 14:41:33 +0100 User-agent: Mutt/1.5.21 (2010-09-15)
I really don't know why the old version fails on a directory without any
non ascii chars but this patch fixes it. If this is acceptable for
everyone then please apply this patch.

diff --git a/configure.ac b/configure.ac
index 9263d39..87df628 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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






# Han



--- End Message ---
--- Begin Message --- Subject: Re: bug#15769: building on OpenBSD fails because of a shell pattern problem Date: Thu, 31 Oct 2013 17:42:29 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Version: 24.4

>> Ie, just swap "^" for "!".

Well, you live and learn. Bash and zsh allow either [^...] or [!...],
but ksh only the latter. I guess every other instance of [^...] in the
Emacs build rules must be in sed rather than the shell.

So I changed ^ for !, but the whole check is likely to get removed soon
anyway.


--- End Message ---

reply via email to

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