diff options
author | wlemb <wlemb> | 2000-08-18 09:03:26 +0000 |
---|---|---|
committer | wlemb <wlemb> | 2000-08-18 09:03:26 +0000 |
commit | 6dbb54b34a48441490100ccf7ec7d961bb3d616d (patch) | |
tree | 0acc3bb49c84c3bfd1b236081596956c6fde6fbf /src/roff | |
parent | f62b6a3d7de0573a935d85cf63a3d94895106382 (diff) | |
download | groff-6dbb54b34a48441490100ccf7ec7d961bb3d616d.tar.gz |
* configure.in: Don't provide an empty value for SH_SCRIPT_SED_CMD
since some non-GNU sed programs can't handle null regexps.
* configure, src/preproc/eqn/Makefile.sub,
src/roff/grog/Makefile.sub, src/roff/nroff/Makefile.sub: Updated.
* src/devices/grolbp/lbp.cc: Add an AIX workaround for an autoconf
bug (string.h and strings.h are both needed according to latest
POSIX standard).
Diffstat (limited to 'src/roff')
-rw-r--r-- | src/roff/grog/Makefile.sub | 2 | ||||
-rw-r--r-- | src/roff/nroff/Makefile.sub | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/roff/grog/Makefile.sub b/src/roff/grog/Makefile.sub index 35b2b3ca..de3dd4b8 100644 --- a/src/roff/grog/Makefile.sub +++ b/src/roff/grog/Makefile.sub @@ -11,7 +11,7 @@ grog: grog.pl grog.sh else \ rm -f $@; \ sed -e 's/@g@/$(g)/g' \ - -e "$(SH_SCRIPT_SED_CMD)" $(srcdir)/grog.sh >$@; \ + -e $(SH_SCRIPT_SED_CMD) $(srcdir)/grog.sh >$@; \ fi chmod +x $@ diff --git a/src/roff/nroff/Makefile.sub b/src/roff/nroff/Makefile.sub index fa6bc4dc..47a1878b 100644 --- a/src/roff/nroff/Makefile.sub +++ b/src/roff/nroff/Makefile.sub @@ -6,7 +6,7 @@ all: nroff nroff: nroff.sh rm -f $@ - sed "$(SH_SCRIPT_SED_CMD)" $(srcdir)/nroff.sh >$@ + sed -e $(SH_SCRIPT_SED_CMD) $(srcdir)/nroff.sh >$@ chmod +x $@ install_data: nroff |