From 9da85cdf421fd3adca2404745feda69565aeda15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Sat, 15 Oct 2005 23:14:04 +0200 Subject: [PATCH] * configure.ac (OBJDUMP): Substitute the program false if objdump is not found. Rev: src/nettle/configure.ac:1.68 --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 57e27b80..047cc82f 100644 --- a/configure.ac +++ b/configure.ac @@ -78,7 +78,8 @@ fi AC_PROG_MAKE_SET AC_PROG_RANLIB AC_CHECK_TOOL(NM, nm, strings) -AC_CHECK_TOOL(OBJDUMP, objdump, strings) +# Used only for the GNU-stack configure test. +AC_CHECK_TOOL(OBJDUMP, objdump, false) if test "x$ac_cv_prog_cc_stdc" = xno ; then AC_ERROR([the C compiler doesn't handle ANSI-C]) -- GitLab