diff options
author | Dan Nicholson <[email protected]> | 2008-02-21 10:32:04 -0800 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-02-21 10:32:04 -0800 |
commit | 758b99894170c1c18370b370eb33dda7d0d14a8d (patch) | |
tree | ec374b369aa4242c98f2fb59808ef03c1f182c7d /configure.ac | |
parent | 112a40ec0280756d83ac9145fd5908d6ffb12e4c (diff) |
autoconf: Fix thinko when checking freebsd CPU types
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e67cd542a35..a7707f8a8e4 100644 --- a/configure.ac +++ b/configure.ac @@ -795,7 +795,7 @@ linux*) ;; freebsd*) PIC_FLAGS="-fPIC" - case "$host_os" in + case "$host_cpu" in i*86) PIC_FLAGS="" if test "x$enable_asm" = xyes; then |