mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-22 09:57:21 +01:00
wscript: set default prefix, do not install without destdir as we don't follow typical unix filesystem hierarchy
This commit is contained in:
parent
523ee2ad97
commit
7d65d9f3bd
4
wscript
4
wscript
@ -10,6 +10,7 @@ import re
|
|||||||
VERSION = '2.4'
|
VERSION = '2.4'
|
||||||
APPNAME = 'hlsdk-portable'
|
APPNAME = 'hlsdk-portable'
|
||||||
top = '.'
|
top = '.'
|
||||||
|
default_prefix = '/'
|
||||||
|
|
||||||
Context.Context.line_just = 60 # should fit for everything on 80x26
|
Context.Context.line_just = 60 # should fit for everything on 80x26
|
||||||
|
|
||||||
@ -238,6 +239,9 @@ def configure(conf):
|
|||||||
conf.add_subproject('cl_dll')
|
conf.add_subproject('cl_dll')
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
|
if bld.is_install and not bld.options.destdir:
|
||||||
|
bld.fatal('Set the install destination directory using --destdir option')
|
||||||
|
|
||||||
# don't clean QtCreator files and reconfigure saved options
|
# don't clean QtCreator files and reconfigure saved options
|
||||||
bld.clean_files = bld.bldnode.ant_glob('**',
|
bld.clean_files = bld.bldnode.ant_glob('**',
|
||||||
excl='*.user configuration.py .lock* *conf_check_*/** config.log %s/*' % Build.CACHE_DIR,
|
excl='*.user configuration.py .lock* *conf_check_*/** config.log %s/*' % Build.CACHE_DIR,
|
||||||
|
Loading…
Reference in New Issue
Block a user