diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-31 09:31:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-31 09:31:34 (GMT) |
commit | 0f43a7627399eea10cd5c93686e0873ad4ebb29c (patch) | |
tree | c010342228fd179367494efd878a4bca4bbd1123 /unix/installManPage | |
parent | 07f720d5670b72e9c3e86ad1ce4d1f2667a6b35f (diff) | |
download | tcl-0f43a7627399eea10cd5c93686e0873ad4ebb29c.zip tcl-0f43a7627399eea10cd5c93686e0873ad4ebb29c.tar.gz tcl-0f43a7627399eea10cd5c93686e0873ad4ebb29c.tar.bz2 |
Fix [https://core.tcl-lang.org/tk/tktview/056f9e85dc|056f9e85dc]: debian patches
Diffstat (limited to 'unix/installManPage')
-rwxr-xr-x | unix/installManPage | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unix/installManPage b/unix/installManPage index 1dbd232..2293a20 100755 --- a/unix/installManPage +++ b/unix/installManPage @@ -91,12 +91,20 @@ case $ManPage in exit 2 ;; esac +Name=`basename $ManPage .$Section` SrcDir=`dirname $ManPage` ######################################################################## ### Process Page to Create Target Pages ### +Specials="FindPhoto FontId MeasureChar" +for n in $Specials; do + if [ "$Name" = "$n" ] ; then + Names="$n $Names" + fi +done + First="" for Target in $Names; do Target=$Target.$Section$Suffix |