diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2015-02-10 17:16:13 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2015-02-10 17:16:13 +0000 |
commit | 57958b5d359aab5daab2d579daaa098b908a3ed6 (patch) | |
tree | 45020465b8ccf395738e22f056c16f01e5ddad27 /lldb/scripts/Python/modules | |
parent | e73e82f2beb4d25c9007a0878ca131959ec1f1b2 (diff) | |
download | bcm5719-llvm-57958b5d359aab5daab2d579daaa098b908a3ed6.tar.gz bcm5719-llvm-57958b5d359aab5daab2d579daaa098b908a3ed6.zip |
Fix the LLDB build under Debian Kfreebsd
Summary:
I don't know if there is a better way for the change in source/Host/freebsd/ThisThread.cpp
Reviewers: emaste
Subscribers: hansw, emaste, lldb-commits
Differential Revision: http://reviews.llvm.org/D7441
llvm-svn: 228710
Diffstat (limited to 'lldb/scripts/Python/modules')
-rw-r--r-- | lldb/scripts/Python/modules/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/modules/Makefile b/lldb/scripts/Python/modules/Makefile index 90dda098ff6..b6989889858 100644 --- a/lldb/scripts/Python/modules/Makefile +++ b/lldb/scripts/Python/modules/Makefile @@ -12,8 +12,8 @@ include $(LLDB_LEVEL)/../../Makefile.config DIRS:= -# only build the readline suppression module on Linux -ifeq ($(HOST_OS), Linux) +# only build the readline suppression module on Linux, Kfreebsd & Hurd +ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux GNU GNU/kFreeBSD)) DIRS += readline endif |