1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

waf: added reconfigure targets to our libraries

This allows you to do "make reconfigure" to re-run configure only if
needed
This commit is contained in:
Andrew Tridgell 2010-11-03 12:09:23 +11:00
parent 8c44dfc371
commit f0a472a2d6
4 changed files with 20 additions and 0 deletions

View File

@ -132,3 +132,8 @@ def test(ctx):
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)

View File

@ -126,3 +126,8 @@ def test(ctx):
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)

View File

@ -101,3 +101,8 @@ def test(ctx):
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)

View File

@ -234,3 +234,8 @@ def test(ctx):
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)