summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2011-05-03 01:38:49 +0000
committerGary Oberbrunner <garyo@oberbrunner.com>2011-05-03 01:38:49 +0000
commitc3fd4e3c31077106288580f0111719a96e44bcc8 (patch)
tree7f51d8b02d5c7ae2707649977d2532b36900ff0c
parent372471e4d30a5d7427aa4976342c2761e00e7334 (diff)
downloadscons-c3fd4e3c31077106288580f0111719a96e44bcc8.tar.gz
Commented out failing log.info calls (pasted from distutils I think) since this file does not have a logger defined.
-rw-r--r--src/setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/setup.py b/src/setup.py
index 7dd2f99d..d3b9a255 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 ---