summaryrefslogtreecommitdiffstats
path: root/unix/installManPage
diff options
context:
space:
mode:
authorandreask@activestate.com <andreas_kupries>2006-03-20 17:10:35 (GMT)
committerandreask@activestate.com <andreas_kupries>2006-03-20 17:10:35 (GMT)
commitd821212ea0b7c6ee377691886bc9348435cdd031 (patch)
tree8076c7d5e184365311174ae833e0368e124dc33a /unix/installManPage
parent97f687497a74683c7743413f0996ab9049fdd63d (diff)
downloadtcl-d821212ea0b7c6ee377691886bc9348435cdd031.zip
tcl-d821212ea0b7c6ee377691886bc9348435cdd031.tar.gz
tcl-d821212ea0b7c6ee377691886bc9348435cdd031.tar.bz2
* unix/installManPage: There is always one even more broken
"sed". Moved the # comment starting character in the sed script to the beginning of their respective lines. The AIX sed will not recognize them as comments otherwise :( The actual text stays indented for better association with the commands they belong to.
Diffstat (limited to 'unix/installManPage')
-rwxr-xr-xunix/installManPage16
1 files changed, 8 insertions, 8 deletions
diff --git a/unix/installManPage b/unix/installManPage
index fddbca7..993d097 100755
--- a/unix/installManPage
+++ b/unix/installManPage
@@ -26,19 +26,19 @@ test -z "$S" && S="$DIR/"
# backticks which doesn't pass backslashes literally.
#
NAMES=`sed -n '
- # Look for a line, that starts with .SH NAME
- # optionally allow NAME to be surrounded
- # by quotes.
+# Look for a line, that starts with .SH NAME
+# optionally allow NAME to be surrounded
+# by quotes.
/^\.SH NAME/{
- # Read next line
+# Read next line
n
- # Remove all commas ...
+# Remove all commas ...
s/,//g
- # ... and backslash-escaped spaces.
+# ... and backslash-escaped spaces.
s/\\\ //g
- # Delete from \- to the end of line
+# Delete from \- to the end of line
s/ \\\-.*//
- # print the result and exit
+# print the result and exit
p;q
}' $MANPAGE`