diff --git a/base/src/macports1.0/macports_fastload.tcl.in b/base/src/macports1.0/macports_fastload.tcl.in
index a1bb24c..40434bb 100644
a
|
b
|
|
43 | 43 | # installations) may experience problems due to different package loading |
44 | 44 | # behavior. |
45 | 45 | # |
46 | | if { ($tcl_version < 8.4) || |
47 | | (($tcl_version == 8.4) && ([lindex [split [info patchlevel] .] 3] < 7))} { |
| 46 | if { [regexp {\d+\.\d+\.\d+} [info patchlevel]] && |
| 47 | ([package vcompare [info patchlevel] 8.4.7] < 0) } { |
48 | 48 | global allpackages |
49 | 49 | if {![info exists allpackages]} { |
50 | 50 | # Only patch once. |