diff options
author | Brent Cook <bcook@openbsd.org> | 2018-05-02 22:30:34 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2018-05-02 22:35:27 -0500 |
commit | 13b704d4d316408906afd162dc5104ee2af69403 (patch) | |
tree | b5276f9b8c9c3d1c365b6a31dc5f8a26989335fb | |
parent | 0974145a9e62d844b5b159cddbce36552bca30df (diff) | |
download | portable-13b704d4d316408906afd162dc5104ee2af69403.tar.gz portable-13b704d4d316408906afd162dc5104ee2af69403.tar.bz2 portable-13b704d4d316408906afd162dc5104ee2af69403.zip |
fix extra comma in amd64 normalization
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 384a2b6..b74b8a1 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -82,7 +82,7 @@ AS_CASE([$host_cpu], | |||
82 | [*sparc*], [CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT"], | 82 | [*sparc*], [CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT"], |
83 | [*arm*], AS_IF([test "x$BSWAP4" = "xyes"],, | 83 | [*arm*], AS_IF([test "x$BSWAP4" = "xyes"],, |
84 | CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT"), | 84 | CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT"), |
85 | [*amd64*], [host_cpu=x86_64, HOSTARCH=intel], | 85 | [*amd64*], [host_cpu=x86_64 HOSTARCH=intel], |
86 | [i?86], [HOSTARCH=intel], | 86 | [i?86], [HOSTARCH=intel], |
87 | [x86_64], [HOSTARCH=intel] | 87 | [x86_64], [HOSTARCH=intel] |
88 | ) | 88 | ) |