From f54a5d22ce974bc9b7e76bbc0191812c957b9053 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Thu, 30 Sep 2010 15:39:41 +0200 Subject: RED-578: SNOW-744: scripts/install.py --uninstall does not remove symbolic links. See http://redmine.imprudenceviewer.org/issues/578 --- linden/doc/contributions.txt | 2 ++ linden/scripts/install.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'linden') diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt index 23647ad..eee1774 100644 --- a/linden/doc/contributions.txt +++ b/linden/doc/contributions.txt @@ -57,6 +57,7 @@ Aleric Inglewood SNOW-477 SNOW-479 SNOW-626 + SNOW-744 SNOW-766 SNOW-800 RED-552 @@ -73,6 +74,7 @@ Aleric Inglewood RED-575 RED-576 RED-577 + RED-578 Alissa Sabre VWR-81 VWR-83 diff --git a/linden/scripts/install.py b/linden/scripts/install.py index 1db9bb3..fca6dbe 100755 --- a/linden/scripts/install.py +++ b/linden/scripts/install.py @@ -492,7 +492,7 @@ windows/i686/vs/2003 -- specify a windows visual studio 2003 package""" for filename in remove_file_list: print "rm",filename if not self._dryrun: - if os.path.exists(filename): + if os.path.lexists(filename): remove_dir_set.add(os.path.dirname(filename)) try: os.remove(filename) -- cgit v1.1