~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup.py

setup: Removed 'config' mode. It's now standalone.
setup.configure: Renamed to setup/ivle-config.
    Made executable and standalone Python script (with a Main function).

You now run ./setup/ivle-config as a standalone script, not 'setup.py config'.
This will eventually get moved out but can't right now due to having to
generate the Trampoline conf.h file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import setup.build
32
32
import setup.install
33
33
 
34
 
 
35
34
def main(argv=None):
36
35
    if argv is None:
37
36
        argv = sys.argv
63
62
        print """Usage: python setup.py operation [options]
64
63
Operation can be:
65
64
    help [operation]
66
 
    config
67
65
    build
68
66
    install
69
67
 
78
76
    try:
79
77
        oper_func = {
80
78
            'help' : help,
81
 
            'config' : setup.configure.configure,
82
79
            'build' : setup.build.build,
83
80
            'install' : setup.install.install,
84
 
            #'updatejails' : None,
85
81
        }[operation]
86
82
    except KeyError:
87
83
        print >>sys.stderr, (