[Installbase-devel] [ installbase-Bugs-813229 ] 0 size files, empty directories, recursive dirs
Status: Alpha
Brought to you by:
damonc
From: SourceForge.net <no...@so...> - 2003-09-26 19:17:05
|
Bugs item #813229, was opened at 2003-09-26 21:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=474883&aid=813229&group_id=54799 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Grzegorz Godlewski (ggodlewski) Assigned to: Nobody/Anonymous (nobody) Summary: 0 size files, empty directories, recursive dirs Initial Comment: InstallBase doesn't support empty directories and 0 size files. Here is a fix for 2nd problem (common.tcl): proc ::MPI::WrapProgress {total size bytes} { global conf iincr conf(wrapTotal) $bytes.0 iincr conf(wrapSoFar) $bytes.0 if {$total > 0} { set x [expr round( ($conf(wrapTotal) * 100.0) / $total )] } else { set x 100.0 } puts stdout ":PERCENT $x" flush stdout if {$size > 0} { set x [expr round( ($conf(wrapSoFar) * 100.0) / $size )] } else { set x 100.0 } puts stdout ":FILEPERCENT $x" flush stdout } It's almost imposible to create project with 100 recursive directories. After unpacking it's flat. I don't have time to enter each dir separately :) AFAIR creating COMMON_STARTUP link on win98 shows an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=474883&aid=813229&group_id=54799 |