Skip to content

Commit

Permalink
the ar tool is called gar on some systems
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
schiele authored and gitster committed Oct 3, 2007
1 parent 8ae92e6 commit 96e24ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ AC_MSG_NOTICE([CHECKS for programs])
#
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.
Expand Down

0 comments on commit 96e24ab

Please sign in to comment.