Source based dev env supported on Haiku

This commit is contained in:
Zoltán Mizsei 2017-01-26 13:10:23 +01:00
parent 67b1a7bb72
commit 11e2e05c06

View File

@ -8,7 +8,7 @@ __docformat__ = 'restructuredtext en'
import sys, os, textwrap, subprocess, shutil, tempfile, atexit, glob 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__) __appname__, __version__)
HEADER = '''\ HEADER = '''\
@ -115,7 +115,7 @@ class Develop(Command):
self.info('\tSHARE:', self.staging_sharedir) self.info('\tSHARE:', self.staging_sharedir)
def pre_sub_commands(self, opts): 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 ' self.info('\nSetting up a source based development environment is only '
'supported on linux. On other platforms, see the User Manual' 'supported on linux. On other platforms, see the User Manual'
' for help with setting up a development environment.') ' for help with setting up a development environment.')