Revision: 70427 http://trac.macports.org/changeset/70427 Author: and.damore@macports.org Date: 2010-08-09 09:31:12 -0700 (Mon, 09 Aug 2010) Log Message: ----------- fix missing checksum in portinstall.tcl, this lead to segfault in entry.o Modified Paths: -------------- branches/gsoc10-configfiles/base/src/port1.0/portinstall.tcl Modified: branches/gsoc10-configfiles/base/src/port1.0/portinstall.tcl =================================================================== --- branches/gsoc10-configfiles/base/src/port1.0/portinstall.tcl 2010-08-09 12:25:19 UTC (rev 70426) +++ branches/gsoc10-configfiles/base/src/port1.0/portinstall.tcl 2010-08-09 16:31:12 UTC (rev 70427) @@ -203,7 +203,7 @@ lappend installPlistWithMD5 $file if {[catch {md5 file "$imagedir$file"} md5sum] == 0} { lappend installPlistWithMD5 $md5sum - } + } else { lappend installPlistWithMD5 _not_present} } #puts "installPlist:$installPlist" puts "installPlistWithMD5:$installPlistWithMD5"