diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-03-05 09:28:02 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-03-05 09:28:02 +0000 |
commit | 41ef25bfefc149958bccf7f6adfaabab54e19ac2 (patch) | |
tree | 4c2234a81f48ddd6d2f832959a081ed473e47734 /autoconf | |
parent | e9083d669aea72dfeb67782aca2bb62a6fdfafc6 (diff) | |
download | external_llvm-41ef25bfefc149958bccf7f6adfaabab54e19ac2.zip external_llvm-41ef25bfefc149958bccf7f6adfaabab54e19ac2.tar.gz external_llvm-41ef25bfefc149958bccf7f6adfaabab54e19ac2.tar.bz2 |
Use AC_PATH_PROG correctly:
http://www.gnu.org/software/autoconf/manual/autoconf.html#Generic-Programs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47943 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 97e0305..a966a09 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -580,18 +580,18 @@ dnl Checks for documentation and testing tools that we can do without. If these dnl are not found then they are set to "true" which always succeeds but does dnl nothing. This just lets the build output show that we could have done dnl something if the tool was available. -AC_PATH_PROG(BZIP2,[bzip2],[echo "Skipped: bzip2 not found"]) -AC_PATH_PROG(DOXYGEN,[doxygen],[echo "Skipped: doxygen not found"]) -AC_PATH_PROG(GROFF,[groff],[echo "Skipped: groff not found"]) -AC_PATH_PROG(GZIP,[gzip],[echo "Skipped: gzip not found"]) -AC_PATH_PROG(POD2HTML,[pod2html],[echo "Skipped: pod2html not found"]) -AC_PATH_PROG(POD2MAN,[pod2man],[echo "Skipped: pod2man not found"]) -AC_PATH_PROG(RUNTEST,[runtest],[echo "Skipped: runtest not found"]) +AC_PATH_PROG(BZIP2, [bzip2]) +AC_PATH_PROG(DOXYGEN, [doxygen]) +AC_PATH_PROG(GROFF, [groff]) +AC_PATH_PROG(GZIP, [gzip]) +AC_PATH_PROG(POD2HTML, [pod2html]) +AC_PATH_PROG(POD2MAN, [pod2man]) +AC_PATH_PROG(RUNTEST, [runtest]) DJ_AC_PATH_TCLSH -AC_PATH_PROG(ZIP,[zip],[echo "Skipped: zip not found"]) -AC_PATH_PROG(OCAMLC,[ocamlc],[echo "Skipped: ocamlc not found"]) -AC_PATH_PROG(OCAMLOPT,[ocamlopt],[echo "Skipped: ocamlopt not found"]) -AC_PATH_PROG(OCAMLDEP,[ocamldep],[echo "Skipped: ocamldep not found"]) +AC_PATH_PROG(ZIP, [zip]) +AC_PATH_PROG(OCAMLC, [ocamlc]) +AC_PATH_PROG(OCAMLOPT, [ocamlopt]) +AC_PATH_PROG(OCAMLDEP, [ocamldep]) dnl Determine if the linker supports the -R option. AC_LINK_USE_R |