prefix no-inst script with an underscore and skip install

This commit is contained in:
Robin Gareus 2016-08-10 03:12:11 +02:00
parent 2b7a89ecff
commit a8143ea44e
10 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ def configure(conf):
pass
def build(bld):
scripts = bld.path.ant_glob ('*.lua')
scripts = bld.path.ant_glob ('*.lua', excl=['^_*'])
print scripts
bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
def options(opt):