diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-11 09:54:52 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-11 09:54:52 +0000 |
commit | 8022375314708f9d9e9c04cb0415b70f12371d30 (patch) | |
tree | d0c367672f7626569e3e911b934c4ab7cfb30b19 /Build/source/utils/xindy | |
parent | 506e456d4c199ee68173b33c2604a7440e455de7 (diff) |
build fixes: luatex for Solaris 8 (-lresolv), xindy
git-svn-id: svn://tug.org/texlive/trunk@13044 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy')
-rwxr-xr-x | Build/source/utils/xindy/configure | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/m4/ac_prog_latex.m4 | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/utils/xindy/configure b/Build/source/utils/xindy/configure index ae92948f17d..ba0ab2c488f 100755 --- a/Build/source/utils/xindy/configure +++ b/Build/source/utils/xindy/configure @@ -3982,7 +3982,7 @@ $as_echo "$as_me: error: Unable to find a LaTeX application" >&2;} { (exit 1); exit 1; }; } fi -; + fi @@ -4056,7 +4056,7 @@ $as_echo "$as_me: error: Unable to find a PDFLaTeX application" >&2;} { (exit 1); exit 1; }; } fi -; + fi diff --git a/Build/source/utils/xindy/m4/ac_prog_latex.m4 b/Build/source/utils/xindy/m4/ac_prog_latex.m4 index 4dc20e9db70..3571f5833b0 100644 --- a/Build/source/utils/xindy/m4/ac_prog_latex.m4 +++ b/Build/source/utils/xindy/m4/ac_prog_latex.m4 @@ -9,11 +9,11 @@ dnl @version 2005-01-21 dnl @license GPLWithACException AC_DEFUN([AC_PROG_LATEX],[ -AC_CHECK_PROGS(latex,[latex elatex lambda],no) +AC_CHECK_PROGS([latex], [latex elatex lambda], [no]) export latex; if test $latex = "no" ; then - TL_MSG_ERROR([Unable to find a LaTeX application]); + TL_MSG_ERROR([Unable to find a LaTeX application]) fi AC_SUBST(latex) ]) diff --git a/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 b/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 index c7e20b5c226..878dc7b3007 100644 --- a/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 +++ b/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 @@ -9,11 +9,11 @@ dnl @version 2005-01-21 dnl @license GPLWithACException AC_DEFUN([AC_PROG_PDFLATEX],[ -AC_CHECK_PROGS(pdflatex,[pdflatex],no) +AC_CHECK_PROGS([pdflatex], [pdflatex], [no]) export pdflatex; if test $pdflatex = "no" ; then - TL_MSG_ERROR([Unable to find a PDFLaTeX application]); + TL_MSG_ERROR([Unable to find a PDFLaTeX application]) fi AC_SUBST(pdflatex) ]) |