~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:
62
62
        print """Usage: python setup.py operation [options]
63
63
Operation can be:
64
64
    help [operation]
65
 
    config
66
65
    build
67
66
    install
68
67
 
77
76
    try:
78
77
        oper_func = {
79
78
            'help' : help,
80
 
            'config' : setup.configure.configure,
81
79
            'build' : setup.build.build,
82
80
            'install' : setup.install.install,
83
81
        }[operation]