diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:40:49 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-31 14:40:49 +0000 |
commit | af861caace1b7b82a44509f06eadd4a54f686b23 (patch) | |
tree | b429b1d7806e25f4d34ca9e4794f7a88c462a6be | |
parent | 921cbb2626f0b6acdca4cbe528b9b5fe757bad6a (diff) | |
download | poky-af861caace1b7b82a44509f06eadd4a54f686b23.tar.gz |
base.bbclass: Fix typo
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index a9ad1a0793..c2323fabe9 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -731,10 +731,10 @@ def generate_git_config(e): | |||
731 | from bb import data | 731 | from bb import data |
732 | 732 | ||
733 | if data.getVar('GIT_CORE_CONFIG', e.data, True): | 733 | if data.getVar('GIT_CORE_CONFIG', e.data, True): |
734 | gitconfig_path = bb.data.expand("${STAGING_DIR_NATTIVE}/usr/etc/gitconfig", e.data) | 734 | gitconfig_path = bb.data.expand("${STAGING_DIR_NATIVE}/usr/etc/gitconfig", e.data) |
735 | proxy_command = " gitproxy = %s\n" % data.getVar('GIT_PROXY_COMMAND', e.data, True) | 735 | proxy_command = " gitproxy = %s\n" % data.getVar('GIT_PROXY_COMMAND', e.data, True) |
736 | 736 | ||
737 | bb.mkdirhier(bb.data.expand("${STAGING_DIR_NATTIVE}/usr/etc/", e.data)) | 737 | bb.mkdirhier(bb.data.expand("${STAGING_DIR_NATIVE}/usr/etc/", e.data)) |
738 | if (os.path.exists(gitconfig_path)): | 738 | if (os.path.exists(gitconfig_path)): |
739 | os.remove(gitconfig_path) | 739 | os.remove(gitconfig_path) |
740 | 740 | ||