aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorAleric Inglewood2010-09-30 15:39:41 +0200
committerAleric Inglewood2010-09-30 15:39:41 +0200
commitf54a5d22ce974bc9b7e76bbc0191812c957b9053 (patch)
tree69930a995662d5b6270d30aec4482084689d755e /linden
parentRED-577: SNOW-477: Wrong string raw_file in strings.xml for RAW file (diff)
downloadmeta-impy-f54a5d22ce974bc9b7e76bbc0191812c957b9053.zip
meta-impy-f54a5d22ce974bc9b7e76bbc0191812c957b9053.tar.gz
meta-impy-f54a5d22ce974bc9b7e76bbc0191812c957b9053.tar.bz2
meta-impy-f54a5d22ce974bc9b7e76bbc0191812c957b9053.tar.xz
RED-578: SNOW-744: scripts/install.py --uninstall does not remove symbolic links.
See http://redmine.imprudenceviewer.org/issues/578
Diffstat (limited to '')
-rw-r--r--linden/doc/contributions.txt2
-rwxr-xr-xlinden/scripts/install.py2
2 files changed, 3 insertions, 1 deletions
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
57 SNOW-477 57 SNOW-477
58 SNOW-479 58 SNOW-479
59 SNOW-626 59 SNOW-626
60 SNOW-744
60 SNOW-766 61 SNOW-766
61 SNOW-800 62 SNOW-800
62 RED-552 63 RED-552
@@ -73,6 +74,7 @@ Aleric Inglewood
73 RED-575 74 RED-575
74 RED-576 75 RED-576
75 RED-577 76 RED-577
77 RED-578
76Alissa Sabre 78Alissa Sabre
77 VWR-81 79 VWR-81
78 VWR-83 80 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"""
492 for filename in remove_file_list: 492 for filename in remove_file_list:
493 print "rm",filename 493 print "rm",filename
494 if not self._dryrun: 494 if not self._dryrun:
495 if os.path.exists(filename): 495 if os.path.lexists(filename):
496 remove_dir_set.add(os.path.dirname(filename)) 496 remove_dir_set.add(os.path.dirname(filename))
497 try: 497 try:
498 os.remove(filename) 498 os.remove(filename)