summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorwlemb <wlemb>2000-10-23 17:55:42 +0000
committerwlemb <wlemb>2000-10-23 17:55:42 +0000
commit981608bc9ba892ccae441db5eb7f57b946faf6d3 (patch)
tree4a721f6f257c1cd96b4f28547495d4850894114c /aclocal.m4
parente8fea0b834cb9584e3fef8fafb3357f08bf02fa6 (diff)
downloadgroff-981608bc9ba892ccae441db5eb7f57b946faf6d3.tar.gz
* aclocal.m4 (GROFF_PAGE): Add test for new directory structure.
* configure: Updated. * arch/djgpp/README, font/devutf8/NOTES: Use it. * man/roff.man, tmac/groff_tmac.man: Use @FONTPATH@, @FONTDIR@, and @MACRODIR@ instead of hard-coded directories.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m47
1 files changed, 7 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 1cd92ce2..f7cc11ac 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -238,6 +238,13 @@ if test -z "$PAGE"; then
descfile=$prefix/share/groff/font/devps/DESC
elif test -r $prefix/lib/groff/font/devps/DESC; then
descfile=$prefix/lib/groff/font/devps/DESC
+ else
+ for f in $prefix/share/groff/*/font/devps/DESC; do
+ if test -r $f; then
+ descfile=$f
+ break
+ fi
+ done
fi
if test -n "$descfile" \
&& grep "^paperlength 841890" $descfile >/dev/null 2>&1; then