Tcl Source Code

Check-in [02219cfde2]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[c30087b04f] Install man pages with permissions 644 instead of 444.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 02219cfde219b300f7e39ab0229c3f544ba7ea94
User & Date: max 2016-06-24 16:40:30
Context
2016-06-26
09:03
Add TCL_NOINLINE macro, useful for micro-optimizations check-in: 8755f87d4b user: jan.nijtmans tags: trunk
09:00
(cherry-pick) [c30087b04f] Install man pages with permissions 644 instead of 444. check-in: 5355df3a95 user: jan.nijtmans tags: core-8-6-branch
07:51
Merge trunk Leaf check-in: 10dcf619f9 user: jan.nijtmans tags: drh-micro-optimization
2016-06-24
16:40
[c30087b04f] Install man pages with permissions 644 instead of 444. check-in: 02219cfde2 user: max tags: trunk
2016-06-23
08:21
[d553228d9f] Stop crashes in [dict update] with low refcount dictionaries. check-in: a633d16fae user: dkf tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to unix/installManPage.

102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
for Target in $Names; do
    Target=$Target.$Section$Suffix
    rm -f $Dir/$Target $Dir/$Target.*
    if test -z "$First" ; then
	First=$Target
	sed -e "/man\.macros/r $SrcDir/man.macros" -e "/man\.macros/d" \
	    $ManPage > $Dir/$First
	chmod 444 $Dir/$First
	$Gzip $Dir/$First
    else
	ln $SymOrLoc$First$Gz $Dir/$Target$Gz
    fi
done

########################################################################







|







102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
for Target in $Names; do
    Target=$Target.$Section$Suffix
    rm -f $Dir/$Target $Dir/$Target.*
    if test -z "$First" ; then
	First=$Target
	sed -e "/man\.macros/r $SrcDir/man.macros" -e "/man\.macros/d" \
	    $ManPage > $Dir/$First
	chmod 644 $Dir/$First
	$Gzip $Dir/$First
    else
	ln $SymOrLoc$First$Gz $Dir/$Target$Gz
    fi
done

########################################################################