mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4-waf: install some missing empty directories
This commit is contained in:
parent
d2b35c3a24
commit
db0eb2f239
@ -598,6 +598,13 @@ def INSTALL_WILDCARD(bld, destdir, pattern, chmod=O644, flat=False,
|
|||||||
Build.BuildContext.INSTALL_WILDCARD = INSTALL_WILDCARD
|
Build.BuildContext.INSTALL_WILDCARD = INSTALL_WILDCARD
|
||||||
|
|
||||||
|
|
||||||
|
def INSTALL_DIRS(bld, destdir, dirs):
|
||||||
|
'''install a set of directories'''
|
||||||
|
for d in TO_LIST(dirs):
|
||||||
|
bld.install_dir(os.path.join(destdir, d))
|
||||||
|
Build.BuildContext.INSTALL_DIRS = INSTALL_DIRS
|
||||||
|
|
||||||
|
|
||||||
def PUBLIC_HEADERS(bld, public_headers, header_path=None):
|
def PUBLIC_HEADERS(bld, public_headers, header_path=None):
|
||||||
'''install some headers
|
'''install some headers
|
||||||
|
|
||||||
|
@ -116,3 +116,6 @@ bld.RECURSE('setup')
|
|||||||
bld.RECURSE('scripting')
|
bld.RECURSE('scripting')
|
||||||
bld.RECURSE('../pidl')
|
bld.RECURSE('../pidl')
|
||||||
bld.RECURSE('../lib')
|
bld.RECURSE('../lib')
|
||||||
|
|
||||||
|
# install some extra empty directories
|
||||||
|
bld.INSTALL_DIRS("${PREFIX}", "etc var/lib var/locks var/run")
|
||||||
|
Loading…
Reference in New Issue
Block a user