diff options
author | Junio C Hamano <junio@twinsun.com> | 2005-09-30 13:31:16 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-01 23:19:48 -0700 |
commit | 455a7f3275d264f6e66045b92c83747ec461dda5 (patch) | |
tree | 566b08d502b5cb82e0a72d485026a6707b2a73c3 /t/Makefile | |
parent | Add git-symbolic-ref (diff) | |
download | tgif-455a7f3275d264f6e66045b92c83747ec461dda5.tar.xz |
More portability.
- The location of openssl development files got customizable.
- The location of iconv development files got customizable.
- Pass $TAR down to t5000 test so that the user can override with
'gmake TAR=gtar'.
- Solaris 'bc' does not seem to grok "define abs()". There is no
reason to use bc there -- expr would do.
Signed-off-by: Junio C Hamano <junio@twinsun.com>
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/Makefile b/t/Makefile index a6b80882ce..e71da7782e 100644 --- a/t/Makefile +++ b/t/Makefile @@ -5,6 +5,7 @@ #GIT_TEST_OPTS=--verbose --debug SHELL_PATH ?= $(SHELL) +TAR ?= $(TAR) T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) |