summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2004-09-29 09:52:39 +0000
committerMiles Bader <miles@gnu.org>2004-09-29 09:52:39 +0000
commit7ec199cdd376f965c6ba3af103d76c86d0756086 (patch)
tree34c25688425d97246d5e2b6530b1b1c562cac948 /configure.in
parent557d51e7ca08a4172056ba7ff4a62a35e7e5a455 (diff)
downloademacs-7ec199cdd376f965c6ba3af103d76c86d0756086.tar.gz
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.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 95ff1f855f7..1f899a0808c 100644
--- a/configure.in
+++ b/configure.in
@@ -1292,7 +1292,7 @@ AC_CHECK_FILE(/proc/sys/kernel/exec-shield, emacs_cv_execshield=1,
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