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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: mattgiuca
  • Date: 2008-02-01 05:48:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:371
setup.py: Fixed chmodding python-console. (Turns out this was a bug in setup,
    not a missing action).

Show diffs side-by-side

added added

removed removed

Lines of Context:
892
892
            | stat.S_ISUID | stat.S_IRUSR | stat.S_IWUSR)
893
893
 
894
894
def action_chmod_x(file, dry):
895
 
    """Chmod +xs a file (sets execute permission)."""
896
 
    print "chmod u+rwx", file
 
895
    """Chmod 755 a file (sets permissions to rwxr-xr-x)."""
 
896
    print "chmod 755", file
897
897
    if not dry:
898
 
        os.chmod(file, stat.S_IXUSR | stat.S_IRUSR | stat.S_IWUSR)
 
898
        os.chmod(file, stat.S_IXUSR | stat.S_IRUSR | stat.S_IWUSR
 
899
            | stat.S_IXGRP | stat.S_IRGRP | stat.S_IXOTH | stat.S_IROTH)
899
900
 
900
901
def query_user(default, prompt):
901
902
    """Prompts the user for a string, which is read from a line of stdin.