Author: danielsh
Date: Sun May 5 13:57:03 2013
New Revision: 1479323
URL: http://svn.apache.org/r1479323
Log:
Silence 'make -s clean'.
* subversion/bindings/ctypes-python/setup.py
(clean.run): Reduce the log level for not being able to remove
a non-existent file. (There is a similar case in distutils itself.)
Modified:
subversion/trunk/subversion/bindings/ctypes-python/setup.py
Modified: subversion/trunk/subversion/bindings/ctypes-python/setup.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/ctypes-python/setup.py?rev=1479323&r1=1479322&r2=1479323&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/ctypes-python/setup.py (original)
+++ subversion/trunk/subversion/bindings/ctypes-python/setup.py Sun May 5
13:57:03 2013
@@ -58,7 +58,7 @@ class clean(_clean):
if not self.dry_run:
os.remove(f)
else:
- log.warn("'%s' does not exist -- can't clean it", os.path.normpath(f))
+ log.debug("'%s' does not exist -- can't clean it", os.path.normpath(f))
# Run standard clean command
_clean.run(self)