aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2008-11-03 12:29:26 -0700
committerChris Larson <clarson@kergoth.com>2008-11-03 12:47:54 -0700
commit3ff5572d2b2702b8dc925e04ebd2c21d2ae8e8ce (patch)
tree1cd83620e25b98c58edefd9ded8a27821a47fc50 /classes
parentf0573933b8de671b98e3d5377774c6a3e671fc84 (diff)
downloadopenembedded-3ff5572d2b2702b8dc925e04ebd2c21d2ae8e8ce.tar.gz
base.bbclass: use 'git log' & 'git branch', not git-log & git-branch.
Diffstat (limited to 'classes')
-rw-r--r--classes/base.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index 93a76aa30f..10648e9885 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -758,7 +758,7 @@ def base_get_metadata_svn_revision(d):
def base_get_metadata_git_branch(d):
import os
- branch = os.popen('cd %s; git-branch | grep "^* " | tr -d "* "' % base_get_scmbasepath(d)).read()
+ branch = os.popen('cd %s; git branch | grep "^* " | tr -d "* "' % base_get_scmbasepath(d)).read()
if len(branch) != 0:
return branch
@@ -766,7 +766,7 @@ def base_get_metadata_git_branch(d):
def base_get_metadata_git_revision(d):
import os
- rev = os.popen("cd %s; git-log -n 1 --pretty=oneline --" % base_get_scmbasepath(d)).read().split(" ")[0]
+ rev = os.popen("cd %s; git log -n 1 --pretty=oneline --" % base_get_scmbasepath(d)).read().split(" ")[0]
if len(rev) != 0:
return rev
return "<unknown>"