aboutsummaryrefslogtreecommitdiffstats
path: root/erts/configure.in
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2010-03-29 02:04:00 +0200
committerTuncer Ayaz <[email protected]>2010-04-06 17:37:37 +0200
commitbdb41b943e42b4a550dbf4db6c9a2c1d4d242b43 (patch)
tree1b4800a7c4d8c045443793e5b4c52c886961c74b /erts/configure.in
parent39e0191d985078d6e9c12c504370425f1de5a6c5 (diff)
downloadotp-bdb41b943e42b4a550dbf4db6c9a2c1d4d242b43.tar.gz
otp-bdb41b943e42b4a550dbf4db6c9a2c1d4d242b43.tar.bz2
otp-bdb41b943e42b4a550dbf4db6c9a2c1d4d242b43.zip
Build placeholder PDF files if FOP is not found
If FOP is not found create PDF files with fakefop script. Signed-off-by: Tuncer Ayaz <[email protected]>
Diffstat (limited to 'erts/configure.in')
-rw-r--r--erts/configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/configure.in b/erts/configure.in
index 6278af3a2e..e5202b75cb 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -821,13 +821,14 @@ fi
AC_CHECK_PROGS(XSLTPROC, xsltproc)
if test -z "$XSLTPROC"; then
echo "xsltproc" >> doc/CONF_INFO
- AC_MSG_WARN([No 'xsltproc' command found: the documentation can not be built])
+ AC_MSG_WARN([No 'xsltproc' command found: the documentation cannot be built])
fi
AC_CHECK_PROGS(FOP, fop)
if test -z "$FOP"; then
+ FOP="$ERL_TOP/make/fakefop"
echo "fop" >> doc/CONF_INFO
- AC_MSG_WARN([No 'fop' command found: the documentation can not be built])
+ AC_MSG_WARN([No 'fop' command found: going to generate placeholder PDF files])
fi
dnl