aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2018-05-02 22:30:34 -0500
committerBrent Cook <bcook@openbsd.org>2018-05-02 22:30:34 -0500
commit096e1a40708a3e95099d2b66f484251c9e69712d (patch)
tree88e276024a2ef20f7b9baec35fe83f4d3bc75869
parent7b33ca2016b5d0459f0ebbcf033c0cc5f9a58224 (diff)
downloadportable-096e1a40708a3e95099d2b66f484251c9e69712d.tar.gz
portable-096e1a40708a3e95099d2b66f484251c9e69712d.tar.bz2
portable-096e1a40708a3e95099d2b66f484251c9e69712d.zip
fix extra comma in amd64 normalization
-rw-r--r--configure.ac2
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)