summaryrefslogtreecommitdiff
path: root/debian/patches/0110-remove_stale_files.patch
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-16 06:40:41 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-16 06:40:41 +0100
commit4ccb35c4f3d01c590735b3957b71839916c28b31 (patch)
treebb40e7e524abe23f56463bea2824bc3c1aa6d747 /debian/patches/0110-remove_stale_files.patch
parent60df8165e6be58369d76af4d38388c9846d82975 (diff)
Refresh and rename patches
Diffstat (limited to 'debian/patches/0110-remove_stale_files.patch')
-rw-r--r--debian/patches/0110-remove_stale_files.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/debian/patches/0110-remove_stale_files.patch b/debian/patches/0110-remove_stale_files.patch
new file mode 100644
index 0000000..2c1273c
--- /dev/null
+++ b/debian/patches/0110-remove_stale_files.patch
@@ -0,0 +1,31 @@
+Description: Remove stale files created by SCons when building Debian packages
+Origin: Debian
+Bug-Debian: http://bugs.debian.org/519948
+Forwarded: http://scons.tigris.org/issues/show_bug.cgi?id=1571
+
+Index: trunk/engine/SCons/Script/Main.py
+===================================================================
+--- trunk.orig/engine/SCons/Script/Main.py
++++ trunk/engine/SCons/Script/Main.py
+@@ -1105,6 +1105,21 @@ def _main(parser):
+ print 'Found nothing to build'
+ exit_status = 2
+
++ # Remove temporary files left by SCons
++ if options.clean:
++ if os.environ.has_key('DH_INTERNAL_OPTIONS'):
++ import shutil
++ for path in ('.sconsign.dblite', '.sconf_temp'):
++ try:
++ if os.path.isfile(path):
++ print 'Removing autogenerated file %s' % path
++ os.remove(path)
++ if os.path.isdir(path):
++ print 'Removing autogenerated directory %s' % path
++ shutil.rmtree(path)
++ except OSError:
++ pass
++
+ def _build_targets(fs, options, targets, target_top):
+
+ global this_build_status