Skip to content

Commit

Permalink
Complete GYP support for Python 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Aug 16, 2011
1 parent e57ed54 commit 72246d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/gyp/pylib/gyp/generator/make.py
Expand Up @@ -29,6 +29,7 @@
import os.path
import os
import sys
import stat

# Debugging-related imports -- remove me once we're solid.
import code
Expand Down Expand Up @@ -2311,8 +2312,8 @@ def CalculateMakefilePath(build_file, base_name):
if os.path.exists(mactool_path):
os.remove(mactool_path)
CopyMacTool(mactool_path)
os.chmod(mactool_path, stat.S_IRWXU | stat.S_IRGRP | stat.S_IWGRP |
stat.S_IROTH | stat.S_IWOTH) # Make file executable.
os.chmod(mactool_path, stat.S_IRWXU | stat.S_IRGRP | stat.S_IXGRP |
stat.S_IROTH | stat.S_IXOTH) # Make file executable.

# Find the list of targets that derive from the gyp file(s) being built.
needed_targets = set()
Expand Down

0 comments on commit 72246d9

Please sign in to comment.