Changeset 160 for trunk/tcl


Ignore:
Timestamp:
Jan 30, 2006, 1:48:22 PM (19 years ago)
Author:
mmc
Message:

Fixed the install.tcl script to include the lib/library.xml file.
This was accidentally removed during the last commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tcl/install.tcl

    r158 r160  
    6969}
    7070
     71catch {file mkdir [file join $targetdir lib]}
     72foreach file [find ../lib] {
     73    set target [file join $targetdir $file]
     74    if {[file isdirectory $file]} {
     75        puts "making directory $target..."
     76        catch {file mkdir $target}
     77        fixperms $target ugo+rx
     78    } else {
     79        puts "installing $target..."
     80        file copy -force $file $target
     81        fixperms $target ugo+r
     82    }
     83}
     84
    7185set fid [open [file join $targetdir pkgIndex.tcl] w]
    7286puts $fid "# Tcl package index file"
Note: See TracChangeset for help on using the changeset viewer.