Changeset 81563
- Timestamp:
- 08/01/11 20:51:10 (4 years ago)
- Location:
- branches/release_2_0
- Files:
-
- 9 edited
-
. (modified) (1 prop)
-
base (modified) (1 prop)
-
base/portmgr/fedora/macports.spec (modified) (1 prop)
-
base/src/pextlib1.0/sha2.c (modified) (1 prop)
-
base/src/pextlib1.0/sha2.h (modified) (1 prop)
-
base/src/pextlib1.0/sha256cmd.c (modified) (1 prop)
-
base/src/pextlib1.0/sha256cmd.h (modified) (1 prop)
-
base/src/registry2.0/portimage.tcl (modified) (1 diff)
-
base/src/registry2.0/receipt_sqlite.tcl (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/release_2_0
-
branches/release_2_0/base
- Property svn:mergeinfo changed
/trunk/base merged: 81562
- Property svn:mergeinfo changed
-
branches/release_2_0/base/portmgr/fedora/macports.spec
- Property svn:mergeinfo changed
/trunk/base/portmgr/fedora/macports.spec merged: 81562
- Property svn:mergeinfo changed
-
branches/release_2_0/base/src/pextlib1.0/sha2.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha2.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha256cmd.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha256cmd.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/registry2.0/portimage.tcl
r81368 r81563 250 250 ## @return 1 if file needs to be explicitly deleted if we have to roll back, 0 otherwise 251 251 proc _activate_file {srcfile dstfile} { 252 switch [file type $srcfile] { 252 if {[catch {set filetype [file type $srcfile]} result]} { 253 # this can happen if the archive was built on case-sensitive and we're case-insensitive 254 # we know any existing dstfile is ours because we checked for conflicts earlier 255 if {![catch {file type $dstfile}]} { 256 ui_debug "skipping case-conflicting file: $srcfile" 257 return 0 258 } else { 259 error $result 260 } 261 } 262 switch $filetype { 253 263 directory { 254 264 # Don't recursively copy directories -
branches/release_2_0/base/src/registry2.0/receipt_sqlite.tcl
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.

