summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2012-04-05 18:53:09 +0000
committerSylvestre Ledru <sylvestre@debian.org>2012-04-05 18:53:09 +0000
commit1d7e8c6148a4356c16745f6496c38c737bd37c02 (patch)
treea041100b4625c8a0cb17d0c6b0c5459655a711f7 /autoconf
parentd7484e5d9b25fe907cdad283659fcdeb5c73060f (diff)
downloadllvm-1d7e8c6148a4356c16745f6496c38c737bd37c02.tar.gz
llvm-1d7e8c6148a4356c16745f6496c38c737bd37c02.tar.bz2
llvm-1d7e8c6148a4356c16745f6496c38c737bd37c02.tar.xz
Fix a problem in the target detection for Debian GNU/kFreeBSD
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index a0e05667dc..7f4b25e4c0 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -286,7 +286,7 @@ AC_CACHE_CHECK([type of operating system we're going to target],
llvm_cv_target_os_type="Darwin" ;;
*-*-minix*)
llvm_cv_target_os_type="Minix" ;;
- *-*-freebsd*)
+ *-*-freebsd* | *-*-kfreebsd-gnu)
llvm_cv_target_os_type="FreeBSD" ;;
*-*-openbsd*)
llvm_cv_target_os_type="OpenBSD" ;;