diff options
author | Joachim Schmitz <jojo@schmitz-digital.de> | 2012-10-30 10:21:40 +0100 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2012-10-30 07:12:18 -0400 |
commit | 50e6af7daf88f42f146c9148df24f7824a1dffac (patch) | |
tree | 66a291d0dcfa4f52fbdda4cdf618cbcb86ed4c3d /Makefile | |
parent | 6c109904bc87987364e37e214138cff8fcaa924a (diff) | |
download | git-50e6af7daf88f42f146c9148df24f7824a1dffac.tar.gz |
fix 'make test' for HP NonStop
This fixes the vast majority of test failures on HP NonStop.
Some test don't work with /bin/diff, some fail with /bin/tar,
so let's put /usr/local/bin in PATH first.
Some tests fail with /bin/sh (link to /bin/ksh) so use bash instead
Signed-off-by: Joachim Schmitz <jojo@schmitz-digital.de>
Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1380,6 +1380,10 @@ ifeq ($(uname_S),NONSTOP_KERNEL) MKDIR_WO_TRAILING_SLASH = YesPlease # RFE 10-120912-4693 submitted to HP NonStop development. NO_SETITIMER = UnfortunatelyYes + SANE_TOOL_PATH=/usr/coreutils/bin:/usr/local/bin + SHELL_PATH=/usr/local/bin/bash + # as of H06.25/J06.14, we might better use this + #SHELL_PATH=/usr/coreutils/bin/bash endif ifneq (,$(findstring MINGW,$(uname_S))) pathsep = ; |