From 62a7ebfe5343ed67d704e6f8da8e166229b0cace Mon Sep 17 00:00:00 2001 From: ward Date: Mon, 6 Apr 2009 21:01:57 +0000 Subject: [PATCH] Build fix: switch from "git-foo" to "git foo" for git 1.6 Signed-off-by: Bernie Innocenti Acked-by: Ward Vandewege git-svn-id: svn://coreboot.org/buildrom@262 0fe3215d-741a-0410-bb5a-0d2cd39d948f --- buildrom-devel/bin/fetchgit.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/buildrom-devel/bin/fetchgit.sh b/buildrom-devel/bin/fetchgit.sh index 952de34..c5d88f3 100755 --- a/buildrom-devel/bin/fetchgit.sh +++ b/buildrom-devel/bin/fetchgit.sh @@ -11,7 +11,7 @@ NAME=$5 if [ ! -d $DIR/.git ]; then echo "Cloning $URL..." - git-clone $URL $DIR + git clone $URL $DIR if [ $? -ne 0 ]; then echo "Couldn't clone $URL." exit 1 @@ -22,10 +22,10 @@ fi export GIT_DIR=$DIR/.git -git-fetch $URL -git-fetch --tags $URL -git-prune-packed -git-pack-redundant --all | xargs -r rm +git fetch $URL +git fetch --tags $URL +git prune-packed +git pack-redundant --all | xargs -r rm # Make the tarball -git-tar-tree $TAG $NAME-$TAG | bzip2 > $TARBALL +git tar-tree $TAG $NAME-$TAG | bzip2 > $TARBALL -- 2.11.4.GIT