Author: ward Date: 2009-04-06 23:01:57 +0200 (Mon, 06 Apr 2009) New Revision: 262
Modified: buildrom-devel/bin/fetchgit.sh Log:
Build fix: switch from "git-foo" to "git foo" for git 1.6
Signed-off-by: Bernie Innocenti bernie@codewiz.org Acked-by: Ward Vandewege ward@gnu.org
Modified: buildrom-devel/bin/fetchgit.sh =================================================================== --- buildrom-devel/bin/fetchgit.sh 2009-03-20 18:56:52 UTC (rev 261) +++ buildrom-devel/bin/fetchgit.sh 2009-04-06 21:01:57 UTC (rev 262) @@ -11,7 +11,7 @@
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 @@
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