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

Fixed spelling of --enable-assembler. Commented

out debug echo:s.

Rev: src/nettle/configure.in:1.12
parent 438f2beb
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ if test x$with_lib_path != x ; then ...@@ -31,7 +31,7 @@ if test x$with_lib_path != x ; then
fi fi
AC_ARG_ENABLE(assembler, AC_ARG_ENABLE(assembler,
AC_HELP_STRING([--enable-assebler],[enable assembler code [default=yes]]), AC_HELP_STRING([--enable-assembler],[enable assembler code [default=yes]]),
[ case $enableval in [ case $enableval in
yes|no) ;; yes|no) ;;
*) AC_MSG_ERROR([bad value $enableval for --enable-assembler, need yes or no]) ;; *) AC_MSG_ERROR([bad value $enableval for --enable-assembler, need yes or no]) ;;
...@@ -64,15 +64,15 @@ case "$host" in ...@@ -64,15 +64,15 @@ case "$host" in
;; ;;
esac esac
echo "enable_assembler: $enable_assembler, path: $path" # echo "enable_assembler: $enable_assembler, path: $path"
if test "$enable_assembler" = yes ; then if test "$enable_assembler" = yes ; then
if test -n "$path"; then if test -n "$path"; then
found=no found=no
for tmp_f in aes aes_tables; do for tmp_f in aes aes_tables; do
echo "Looking for $path/$tmp_f.asm" # echo "Looking for $path/$tmp_f.asm"
if test -f "$path/$tmp_f.asm"; then if test -f "$path/$tmp_f.asm"; then
echo found # echo found
found=yes found=yes
AC_CONFIG_LINKS($tmp_f.asm:$path/$tmp_f.asm) AC_CONFIG_LINKS($tmp_f.asm:$path/$tmp_f.asm)
fi fi
......
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