summaryrefslogtreecommitdiff
path: root/PROBLEMS
diff options
context:
space:
mode:
authorwl <wl>2005-05-18 07:03:06 +0000
committerwl <wl>2005-05-18 07:03:06 +0000
commite8cd3d70d5dcec0e8e40429830a372a40f9c9ffa (patch)
tree36aeb813187b8602cf13db6f0140fcd23894958e /PROBLEMS
parentd5e77458ec0d21272384a78180946518fe350b7d (diff)
downloadgroff-e8cd3d70d5dcec0e8e40429830a372a40f9c9ffa.tar.gz
Miscellaneous script portability enhancements.
* aclocal.m4: (GROFF_CSH_HACK): Add space in shebang prototype for generated conftest.sh script, conforming to portability recommendation in autoconf docs. * configure: Likewise, for code generated by GROFF_CSH_HACK. * contrib/eqn2graph/eqn2graph.sh: Add space in shebang, conforming to portability recommendation in autoconf docs. * contrib/gdiffmk/gdiffmk.sh: Likewise. * contrib/gdiffmk/tests/runtests.in: Likewise. * contrib/grap2graph/grap2graph.sh: Likewise. * contrib/groffer/groffer.sh: Likewise. * contrib/mm/mmroff.pl: Likewise. * contrib/mom/momdoc/appendices.html: Likewise. * contrib/pic2graph/pic2graph.sh: Likewise. * font/devps/generate/afmname: Likewise. * src/devices/xditview/ad2c: Likewise. * src/preproc/eqn/neqn.sh: Likewise. * src/roff/grog/grog.pl: Likewise. * src/roff/grog/grog.sh: Likewise. * src/roff/nroff/nroff.sh: Likewise. * PROBLEMS: Likewise, in embedded script examples. Improve portability of `pdfroff' shell script. * arch/misc/shdeps.sh: Add space in shebang, conforming to portability guidelines in `autoconf' docs. (PATH_SEARCH_SETUP): New substitution; emits PATH_SEPARATOR initialization code. Used by contrib/pdfmark/pdfroff.sh's `searchpath' function.
Diffstat (limited to 'PROBLEMS')
-rw-r--r--PROBLEMS8
1 files changed, 4 insertions, 4 deletions
diff --git a/PROBLEMS b/PROBLEMS
index f096e550..ba43b3ce 100644
--- a/PROBLEMS
+++ b/PROBLEMS
@@ -633,13 +633,13 @@ as empty):
Create a script called 'eqn':
- > #!/bin/sh
+ > #! /bin/sh
> if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
> geqn $*
and a script called 'neqn':
- > #!/bin/sh
+ > #! /bin/sh
> if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
> geqn -Tascii $*
@@ -659,7 +659,7 @@ To get PostScript output from 'man -t', you also need to create a
--- /usr/local/bin/psroff Sat Feb 13 17:45:46 1993
***************
*** 1,8 ****
- #!/bin/sh
+ #! /bin/sh
! # Emulate nroff with groff.
prog="$0"
@@ -668,7 +668,7 @@ To get PostScript output from 'man -t', you also need to create a
for i
--- 1,8 ----
- #!/bin/sh
+ #! /bin/sh
! # Emulate psroff with groff.
prog="$0"