https://github.com/git/git
Revision b21c0bc8e63fda94d326c974bc77da87d7229ddc authored by Junio C Hamano on 23 January 2014, 16:51:14 UTC, committed by Junio C Hamano on 23 January 2014, 16:51:14 UTC
* 'master' of git://git.bogomips.org/git-svn:
  git-svn: memoize _rev_list and rebuild
2 parent s 2dbfa67 + ab0bcec
Raw File
Tip revision: b21c0bc8e63fda94d326c974bc77da87d7229ddc authored by Junio C Hamano on 23 January 2014, 16:51:14 UTC
Merge git://git.bogomips.org/git-svn
Tip revision: b21c0bc
wrap-for-bin.sh
#!/bin/sh

# wrap-for-bin.sh: Template for git executable wrapper scripts
# to run test suite against sandbox, but with only bindir-installed
# executables in PATH.  The Makefile copies this into various
# files in bin-wrappers, substituting
# @@BUILD_DIR@@ and @@PROG@@.

GIT_EXEC_PATH='@@BUILD_DIR@@'
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
then
	unset GIT_TEMPLATE_DIR
else
	GIT_TEMPLATE_DIR='@@BUILD_DIR@@/templates/blt'
	export GIT_TEMPLATE_DIR
fi
GITPERLLIB='@@BUILD_DIR@@/perl/blib/lib'"${GITPERLLIB:+:$GITPERLLIB}"
GIT_TEXTDOMAINDIR='@@BUILD_DIR@@/po/build/locale'
PATH='@@BUILD_DIR@@/bin-wrappers:'"$PATH"
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR

exec "${GIT_EXEC_PATH}/@@PROG@@" "$@"
back to top