summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2011-05-03 01:38:49 (GMT)
committerGary Oberbrunner <garyo@oberbrunner.com>2011-05-03 01:38:49 (GMT)
commit74a93e84cce4f50af3c1ec0b8eaa7d88d57370a6 (patch)
tree7f51d8b02d5c7ae2707649977d2532b36900ff0c /src
parent7351080bc88e487771b7ddeae70a899c61b70fb1 (diff)
downloadSCons-74a93e84cce4f50af3c1ec0b8eaa7d88d57370a6.zip
SCons-74a93e84cce4f50af3c1ec0b8eaa7d88d57370a6.tar.gz
SCons-74a93e84cce4f50af3c1ec0b8eaa7d88d57370a6.tar.bz2
Commented out failing log.info calls (pasted from distutils I think) since this file does not have a logger defined.
Diffstat (limited to 'src')
-rw-r--r--src/setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/setup.py b/src/setup.py
index 7dd2f99..d3b9a25 100644
--- a/src/setup.py
+++ b/src/setup.py
@@ -330,10 +330,11 @@ class install_scripts(_install_scripts):
# all the scripts we just installed.
for file in self.get_outputs():
if self.dry_run:
- log.info("changing mode of %s", file)
+ # log.info("changing mode of %s", file)
+ pass
else:
mode = ((os.stat(file)[stat.ST_MODE]) | 0555) & 07777
- log.info("changing mode of %s to %o", file, mode)
+ # log.info("changing mode of %s to %o", file, mode)
os.chmod(file, mode)
# --- /distutils copy/paste ---