summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ae92e6)
raw | patch | inline | side by side (parent: 8ae92e6)
author | Robert Schiele <rschiele@gmail.com> | |
Wed, 3 Oct 2007 01:49:34 +0000 (03:49 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 3 Oct 2007 04:10:25 +0000 (21:10 -0700) |
Some systems that have only installed the GNU toolchain (prefixed with "g")
do not provide "ar" but only "gar". Make configure find this tool as well.
Signed-off-by: Robert Schiele <rschiele@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
do not provide "ar" but only "gar". Make configure find this tool as well.
Signed-off-by: Robert Schiele <rschiele@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 84fd7f1e1f2fd670de38a43bfe65d3988fc4767e..ed7cc895d276ac4d7548211a364a4e6952f9b7bd 100644 (file)
--- a/configure.ac
+++ b/configure.ac
#
AC_PROG_CC([cc gcc])
#AC_PROG_INSTALL # needs install-sh or install.sh in sources
-AC_CHECK_TOOL(AR, ar, :)
+AC_CHECK_TOOLS(AR, [gar ar], :)
AC_CHECK_PROGS(TAR, [gtar tar])
# TCLTK_PATH will be set to some value if we want Tcl/Tk
# or will be empty otherwise.