diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-03-21 04:19:31 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-03-21 04:19:31 +0000 |
commit | 2561472809c39e68b0c2f614f47090eb9ae82b65 (patch) | |
tree | 0cc1da0962838c0fc022f046ebf556690414d5b7 /configure.in | |
parent | b69f5f3e1bdfc07a6b3c78b54f4f16de7ba9e934 (diff) | |
download | tor-2561472809c39e68b0c2f614f47090eb9ae82b65.tar.gz tor-2561472809c39e68b0c2f614f47090eb9ae82b65.zip |
Add missing dollar sign
svn:r1330
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 79b30b3144..5db26b702d 100644 --- a/configure.in +++ b/configure.in @@ -171,7 +171,7 @@ return *(int*)(&s[1]); }]])], [tor_cv_unaligned_ok=yes], [tor_cv_unaligned_ok=no], [tor_cv_unaligned_ok=cross])]) -if test tor_cv_unaligned_ok = yes; then +if test $tor_cv_unaligned_ok = yes; then AC_DEFINE([UNALIGNED_INT_ACCESS_OK], 1, [Define to 1 iff unaligned int access is allowed]) fi |