Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
52e30fea
Commit
52e30fea
authored
Apr 13, 2015
by
Niels Möller
Browse files
Fix shell quoting in test of GMP_NUMB_BITS asm compatibility. Reported by Edward Sheldrake.
parent
ba80bf27
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
52e30fea
2015-04-13 Niels Möller <nisse@lysator.liu.se>
* configure.ac: Fix shell quoting in test of GMP_NUMB_BITS asm
compatibility. Reported by Edward Sheldrake.
2015-03-31 Niels Möller <nisse@diamant.hack.org>
* x86_64/ecc-224-modp.asm: Require that GMP_NUMB_BITS == 64.
...
...
configure.ac
View file @
52e30fea
...
...
@@ -467,7 +467,7 @@ EOF
dnl Note double square brackets, for extra m4 quoting.
tmp_bits=`grep GMP_NUMB_BITS "$srcdir/$asm_dir/$tmp_h" \
| sed 's/^.*GMP_NUMB_BITS(\([[0-9]]*\)).*$/\1/'`
if test "$tmp_bits" && test "$tmp_bits" !=
'
${GMP_NUMB_BITS}
'
; then
if test "$tmp_bits" && test "$tmp_bits" !=
"
${GMP_NUMB_BITS}
"
; then
AC_MSG_WARN([skipping $tmp_h, because GMP_NUMB_BITS != $tmp_bits])
continue
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment