From 4ef312e07bb9c774a89eb4b755feabfc151351a8 Mon Sep 17 00:00:00 2001 From: Luca Falavigna Date: Sat, 1 Aug 2009 20:52:02 +0200 Subject: Adhere to DEP3 --- debian/patches/remove_broken_symlinks | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 debian/patches/remove_broken_symlinks (limited to 'debian/patches/remove_broken_symlinks') diff --git a/debian/patches/remove_broken_symlinks b/debian/patches/remove_broken_symlinks deleted file mode 100644 index f28a4d7..0000000 --- a/debian/patches/remove_broken_symlinks +++ /dev/null @@ -1,19 +0,0 @@ -Description: In Clean() routine, try to delete symlinks even if files they point to are not available. -Upstream bug: http://scons.tigris.org/issues/show_bug.cgi?id=2095 -Debian bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=485521 - -Index: scons-1.2.0/engine/SCons/Script/Main.py -=================================================================== ---- scons-1.2.0.orig/engine/SCons/Script/Main.py 2008-12-26 17:46:29.470044569 +0100 -+++ scons-1.2.0/engine/SCons/Script/Main.py 2008-12-26 17:46:40.238042348 +0100 -@@ -328,6 +328,10 @@ - # then delete dir itself - if remove: os.rmdir(path) - display("Removed directory " + pathstr) -+ else: -+ if os.path.islink(path): -+ if remove: os.unlink(path) -+ display("Removed " + pathstr) - except (IOError, OSError), e: - print "scons: Could not remove '%s':" % pathstr, e.strerror - -- cgit v1.2.3