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/t5000-tar-tree.sh | |
parent | 8098a178b26dc7a158d129a092a5b78da6d12b72 (diff) | |
download | git-455a7f3275d264f6e66045b92c83747ec461dda5.tar.gz git-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/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 6bf34066e..5dffb8e1e 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -50,7 +50,7 @@ test_expect_success \ test_expect_success \ 'validate file modification time' \ - 'TZ=GMT tar tvf b.tar a/a | + 'TZ=GMT $TAR tvf b.tar a/a | awk \{print\ \$4,\ \(length\(\$5\)\<7\)\ ?\ \$5\":00\"\ :\ \$5\} \ >b.mtime && echo "2005-05-27 22:00:00" >expected.mtime && @@ -63,7 +63,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive' \ - '(cd b && tar xf -) <b.tar' + '(cd b && $TAR xf -) <b.tar' test_expect_success \ 'validate filenames' \ @@ -80,7 +80,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive with prefix' \ - '(cd c && tar xf -) <c.tar' + '(cd c && $TAR xf -) <c.tar' test_expect_success \ 'validate filenames with prefix' \ |