diff options
author | Miles Bader <miles@gnu.org> | 2004-09-29 09:52:39 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2004-09-29 09:52:39 +0000 |
commit | bc9b2430ed9bdb80fb281bc324e158f89d186483 (patch) | |
tree | 16d516f141c4ef1dfe6b65f37d5630437aac3957 /configure.in | |
parent | f2be4fd018aa735f751d8e89c0f2a228e49ed2dc (diff) | |
download | emacs-bc9b2430ed9bdb80fb281bc324e158f89d186483.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.in | 2 |
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 |