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
commitbc9b2430ed9bdb80fb281bc324e158f89d186483 (patch)
tree16d516f141c4ef1dfe6b65f37d5630437aac3957 /configure.in
parentf2be4fd018aa735f751d8e89c0f2a228e49ed2dc (diff)
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 95ff1f855f..1f899a0808 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