summaryrefslogtreecommitdiff
path: root/git-sh-setup.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-06-05 23:36:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-06-06 20:21:51 (GMT)
commit0e0aea5a47b675ab2dca9c77180b8fe9bc6bdeec (patch)
tree4e7b4f83d76f60542269a63334549276348ba17a /git-sh-setup.sh
parentb213019c00740289997f12e5f53b1baae588ac8a (diff)
downloadgit-0e0aea5a47b675ab2dca9c77180b8fe9bc6bdeec.zip
git-0e0aea5a47b675ab2dca9c77180b8fe9bc6bdeec.tar.gz
git-0e0aea5a47b675ab2dca9c77180b8fe9bc6bdeec.tar.bz2
Makefile: introduce SANE_TOOL_PATH for prepending required elements to PATH
Some platforms (like SunOS and family) have kept their common binaries at some historical moment in time, and introduced new binaries with modern features in a special location like /usr/xpg4/bin or /usr/ucb. Some of the features provided by these modern binaries are expected and required by git. If the featureful binaries are not in the users path, then git could end up using the less featureful binary and fail. So provide a mechanism to prepend elements to the users PATH at runtime so the modern binaries will be found. Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-sh-setup.sh')
-rwxr-xr-xgit-sh-setup.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/git-sh-setup.sh b/git-sh-setup.sh
index 8382339..7802581 100755
--- a/git-sh-setup.sh
+++ b/git-sh-setup.sh
@@ -11,6 +11,8 @@
# exporting it.
unset CDPATH
+# @@PATH@@:$PATH
+
die() {
echo >&2 "$@"
exit 1