summaryrefslogtreecommitdiff
path: root/debian/patches/0110-remove_stale_files.patch
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-03 06:25:00 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-03 06:25:00 +0200
commitd4ed069896a9d49eb33966a0f871e39b5c24da8a (patch)
tree1c923e288e1641b8a08a71891e3ee5ea1e4dfde5 /debian/patches/0110-remove_stale_files.patch
parent3765e33b76c51c81dd7bbbfacab0c4e76a1713cb (diff)
parent13e92f02338ad8d28d58fcd7c9f46d0d5e970e54 (diff)
Merge branch 'release/3.0.0-1'3.0.0-1
Diffstat (limited to 'debian/patches/0110-remove_stale_files.patch')
-rw-r--r--debian/patches/0110-remove_stale_files.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches/0110-remove_stale_files.patch b/debian/patches/0110-remove_stale_files.patch
index d4be6bf..b3a94d2 100644
--- a/debian/patches/0110-remove_stale_files.patch
+++ b/debian/patches/0110-remove_stale_files.patch
@@ -7,8 +7,8 @@ Index: trunk/engine/SCons/Script/Main.py
===================================================================
--- trunk.orig/engine/SCons/Script/Main.py
+++ trunk/engine/SCons/Script/Main.py
-@@ -1094,6 +1094,21 @@ def _main(parser):
- print 'Found nothing to build'
+@@ -1106,6 +1106,21 @@ def _main(parser):
+ print('Found nothing to build')
exit_status = 2
+ # Remove temporary files left by SCons
@@ -18,10 +18,10 @@ Index: trunk/engine/SCons/Script/Main.py
+ for path in ('.sconsign.dblite', '.sconf_temp'):
+ try:
+ if os.path.isfile(path):
-+ print 'Removing autogenerated file %s' % path
++ print ('Removing autogenerated file %s' % (path))
+ os.remove(path)
+ if os.path.isdir(path):
-+ print 'Removing autogenerated directory %s' % path
++ print ('Removing autogenerated directory %s' % (path))
+ shutil.rmtree(path)
+ except OSError:
+ pass