summaryrefslogtreecommitdiff
path: root/config.mak.in
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2006-07-08 21:07:13 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-09 09:20:57 (GMT)
commitfd22c0271b33227e651be456beb4cead934f5624 (patch)
tree85802bb4616aa688e3b62d32b4f200671dfbb8f0 /config.mak.in
parentebdf53210ca30eaaa6cf5f555200678bf5f256ac (diff)
downloadgit-fd22c0271b33227e651be456beb4cead934f5624.zip
git-fd22c0271b33227e651be456beb4cead934f5624.tar.gz
git-fd22c0271b33227e651be456beb4cead934f5624.tar.bz2
autoconf: Checks for some programs
./configure script checks now for the following programs: * CC - using AC_PROG_CC * AR - using AC_CHECK_TOOL among ar * TAR - among gtar, tar Checks not implemented: * INSTALL - needs install-sh or install.sh in sources * RPMBUILD - not known alternatives for rpmbuild * PYTHON - no PYTHON variable in Makefile, has to set NO_PYTHON if not present Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.mak.in')
-rw-r--r--config.mak.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.mak.in b/config.mak.in
index 82c9781..89520eb 100644
--- a/config.mak.in
+++ b/config.mak.in
@@ -1,6 +1,11 @@
# git Makefile configuration, included in main Makefile
# @configure_input@
+CC = @CC@
+AR = @AR@
+TAR = @TAR@
+#INSTALL = @INSTALL@ # needs install-sh or install.sh in sources
+
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@