git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] the ar tool is called gar on some systems
@ 2007-08-02 16:15 Robert Schiele
  0 siblings, 0 replies; 3+ messages in thread
From: Robert Schiele @ 2007-08-02 16:15 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

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>
---
This is another trivial configure patch.  If you don't want to include it in
the upcomming release it is fine for me to delay it.  If you expect me to
resubmit after the release, drop me a note.

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 84fd7f1..ed7cc89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.
-- 
1.5.2.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [PATCH] the ar tool is called gar on some systems
@ 2007-10-03  1:49 Robert Schiele
  2007-10-03  4:55 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Schiele @ 2007-10-03  1:49 UTC (permalink / raw)
  To: git; +Cc: gitster

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>
---
I sent that some weeks ago but it seems it got lost.

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 84fd7f1..ed7cc89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.
-- 
1.5.2.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-10-03  4:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-02 16:15 [PATCH] the ar tool is called gar on some systems Robert Schiele
  -- strict thread matches above, loose matches on Subject: below --
2007-10-03  1:49 Robert Schiele
2007-10-03  4:55 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).