From 11e2e05c06370946c4a803c51e942774ffd963cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Mizsei?= Date: Thu, 26 Jan 2017 13:10:23 +0100 Subject: [PATCH] Source based dev env supported on Haiku --- setup/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/install.py b/setup/install.py index 75a66bb849..92795544b9 100644 --- a/setup/install.py +++ b/setup/install.py @@ -8,7 +8,7 @@ __docformat__ = 'restructuredtext en' import sys, os, textwrap, subprocess, shutil, tempfile, atexit, glob -from setup import (Command, islinux, isbsd, basenames, modules, functions, +from setup import (Command, islinux, isbsd, ishaiku, basenames, modules, functions, __appname__, __version__) HEADER = '''\ @@ -115,7 +115,7 @@ class Develop(Command): self.info('\tSHARE:', self.staging_sharedir) def pre_sub_commands(self, opts): - if not (islinux or isbsd): + if not (islinux or isbsd or ishaiku): self.info('\nSetting up a source based development environment is only ' 'supported on linux. On other platforms, see the User Manual' ' for help with setting up a development environment.')