On Fri, Jun 27, 2008 at 04:13:41PM -0500, Craig L. Ching wrote: > The first thing I encountered was that because the tests all use > #!/bin/sh the exit code was not what the tests expected. So I ended up > running 'make SHELL=`which bash` all' directly in the git/t/ directory. > That seemed to shake out and work for most of the tests except for > t/t7502-commit.sh. Try as I might, I could not get SHELL_PATH set to > anything but /bin/sh except to hard-code the SHELL_PATH in this script. The SHELL_PATH actually comes from the build options for all of git. So you should be able to go to the toplevel of your git repo and do a "make SHELL_PATH=`which bash`". This means that we will also use bash for all of the script components of git. I don't know how necessary that is on AIX, but it certainly is on Solaris, where /bin/sh is unusable. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html