From 80980dca38d5b7d2d0f238131b5c3f3bac7c2c32 Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Mon, 20 Mar 2006 17:10:35 +0000 Subject: * 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. --- ChangeLog | 8 ++++++++ unix/installManPage | 16 ++++++++-------- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index d0e5729..dded94f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-03-20 Andreas Kupries + + * 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. + 2006-03-20 Donal K. Fellows * tests/cmdAH.test, tests/fCmd.test, tests/unixFCmd.test: 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` -- cgit v0.12