diff options
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 |