Browse Source

Merge branch 'fixes'

maint
Junio C Hamano 19 years ago
parent
commit
e858862fd9
  1. 1
      Makefile
  2. 8
      git-status.sh
  3. 4
      git.sh
  4. 3
      t/t5400-send-pack.sh
  5. 3
      t/test-lib.sh

1
Makefile

@ -180,6 +180,7 @@ ifneq (,$(findstring arm,$(shell uname -m))) @@ -180,6 +180,7 @@ ifneq (,$(findstring arm,$(shell uname -m)))
ARM_SHA1 = YesPlease
endif
ifeq ($(shell uname -s),OpenBSD)
NO_STRCASESTR = YesPlease
NEEDS_LIBICONV = YesPlease
PLATFORM_DEFINES += -I/usr/local/include -L/usr/local/lib
endif

8
git-status.sh

@ -45,10 +45,10 @@ then @@ -45,10 +45,10 @@ then
sed -e '
s/^://
h
s/^[^\t]*//
s/^[^ ]*//
s/ /\\ /g
x
s/\t.*$//
s/ .*$//
G
s/\n/ /' |
report "Updated but not checked in" "will commit"
@ -71,10 +71,10 @@ git-diff-files | @@ -71,10 +71,10 @@ git-diff-files |
sed -e '
s/^://
h
s/^[^\t]*//
s/^[^ ]*//
s/ /\\ /g
x
s/\t.*$//
s/ .*$//
G
s/\n/ /' |
report "Changed but not updated" "use git-update-index to mark for commit"

4
git.sh

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
#!/bin/sh

cmd=
path=$(dirname $0)
path=$(dirname "$0")
case "$#" in
0) ;;
*) cmd="$1"
@ -11,7 +11,7 @@ case "$#" in @@ -11,7 +11,7 @@ case "$#" in
echo "git version @@GIT_VERSION@@"
exit 0 ;;
esac
test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
test -x "$path/git-$cmd" && exec "$path/git-$cmd" "$@" ;;
esac

echo "Usage: git COMMAND [OPTIONS] [TARGET]"

3
t/t5400-send-pack.sh

@ -8,6 +8,9 @@ test_description='See why rewinding head breaks send-pack @@ -8,6 +8,9 @@ test_description='See why rewinding head breaks send-pack
'
. ./test-lib.sh

touch cpio-test
test_expect_success 'working cpio' 'echo cpio-test | cpio -o > /dev/null'

cnt='1'
test_expect_success setup '
tree=$(git-write-tree) &&

3
t/test-lib.sh

@ -5,9 +5,10 @@ @@ -5,9 +5,10 @@

# For repeatability, reset the environment to known value.
LANG=C
LC_ALL=C
PAGER=cat
TZ=UTC
export LANG PAGER TZ
export LANG LC_ALL PAGER TZ
unset AUTHOR_DATE
unset AUTHOR_EMAIL
unset AUTHOR_NAME

Loading…
Cancel
Save