Skip to content
Snippets Groups Projects
Commit 9da85cdf authored by Niels Möller's avatar Niels Möller
Browse files

* configure.ac (OBJDUMP): Substitute the program false if objdump

is not found.

Rev: src/nettle/configure.ac:1.68
parent f10c89ff
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,8 @@ fi ...@@ -78,7 +78,8 @@ fi
AC_PROG_MAKE_SET AC_PROG_MAKE_SET
AC_PROG_RANLIB AC_PROG_RANLIB
AC_CHECK_TOOL(NM, nm, strings) 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 if test "x$ac_cv_prog_cc_stdc" = xno ; then
AC_ERROR([the C compiler doesn't handle ANSI-C]) AC_ERROR([the C compiler doesn't handle ANSI-C])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment