Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | (#1428) installed shared libs with exec perms (CVS 6206) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3f2a3414d008636e0d70f3ed8b728ffd |
User & Date: | vapier 2009-01-26 21:25:58.000 |
Context
2009-01-26
| ||
21:39 | (#3449) search for tclConfig.sh first by asking tclsh itself where it is (CVS 6207) (check-in: ff2912dc14 user: vapier tags: trunk) | |
21:25 | (#1428) installed shared libs with exec perms (CVS 6206) (check-in: 3f2a3414d0 user: vapier tags: trunk) | |
20:59 | (#3583) add a rule for sqlite3.pc in case the .in file is updated (CVS 6205) (check-in: 4d03b69317 user: vapier tags: trunk) | |
Changes
Changes to tclinstaller.tcl.
︙ | ︙ | |||
21 22 23 24 25 26 27 | close $fd # We cannot use [file copy] because that will just make a copy of # a symbolic link. We have to open and copy the file for ourselves. # set in [open $LIBFILE] fconfigure $in -translation binary | | | 21 22 23 24 25 26 27 28 29 30 31 32 | close $fd # We cannot use [file copy] because that will just make a copy of # a symbolic link. We have to open and copy the file for ourselves. # set in [open $LIBFILE] fconfigure $in -translation binary set out [open $LIB w 0755] fconfigure $out -translation binary puts -nonewline $out [read $in] close $in close $out |