diff configure.in @ 57268:6ce2eaa4905a

Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-581 Fix exec-shield autoconf test 2004-09-29 Miles Bader <miles@gnu.org> * configure.in (HAVE_EXECSHIELD): Test correct env variable to see if setarch is present.
author Miles Bader <miles@gnu.org>
date Wed, 29 Sep 2004 09:52:39 +0000
parents 4408561037cf
children 76b377db0bca 6c1af301b455
line wrap: on
line diff
--- a/configure.in	Wed Sep 29 08:51:40 2004 +0000
+++ b/configure.in	Wed Sep 29 09:52:39 2004 +0000
@@ -1292,7 +1292,7 @@
 if test "$emacs_cv_execshield" = 1; then
   AC_PATH_PROG(SETARCH, setarch, no)
   AC_SUBST(SETARCH)
-  if test "$setarch" != no && test "$machine" = "intel386"; then
+  if test "$SETARCH" != no && test "$machine" = "intel386"; then
     AC_DEFINE(HAVE_EXECSHIELD, 1,
     [Define to 1 if this OS has exec shield and we can handle it.])
   else