# HG changeset patch # User jlarmour # Date 1087330809 0 # Node ID 320a73933e7dd2b58aaa9da07668865b549a4204 # Parent dc5f9783d45a443d7c0bddebc44f41c93df785cc * sgml/makemakefile: Replace plusses with x'es in all entities. diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2004-06-15 Jonathan Larmour + + * sgml/makemakefile: Replace plusses with x'es in all entities. + 2004-04-19 John Dallaway * sgml/doclist: Remove RedBoot documentation which is now built diff --git a/doc/sgml/makemakefile b/doc/sgml/makemakefile --- a/doc/sgml/makemakefile +++ b/doc/sgml/makemakefile @@ -76,7 +76,7 @@ for i in `cat ${doclist}`; do line="`echo $i | sed 's/#.*//;'`" if (test ! -z $line); then /bin/echo -n " ${toplvl}/packages/$i" | sed "s@/current/@/${PACKAGEVER}/@g" >> makefile - entityi="`echo $i | sed 's@/@-@g; s@\.@-@g; s@_@-@g; s@-current-doc@@g; s@-current@@g'`" + entityi="`echo $i | sed 's@\+@x@g; s@/@-@g; s@\.@-@g; s@_@-@g; s@-current-doc@@g; s@-current@@g'`" echo "" | sed "s@/current/@/${PACKAGEVER}/@g" >> ecos-ref.sgml fi done @@ -207,7 +207,7 @@ EOF for i in `cat ${doclist}`; do line="`echo $i | sed 's/#.*//;'`" if (test ! -z $line); then - entityi="`echo $i | sed 's@/@-@g; s@\.@-@g; s@_@-@g; s@-current-doc@@g; s@-current@@g'`" + entityi="`echo $i | sed 's@\+@x@g; s@/@-@g; s@\.@-@g; s@_@-@g; s@-current-doc@@g; s@-current@@g'`" # special kludge if [ "`basename $i`" != "tcpip-manpages.sgml" -a \ "`basename $i`" != "snmp-manpages.sgml" -a \