diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-31 11:12:24 +0000 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-31 11:13:45 +0000 |
| commit | cb79459c30cfde3eb9115f15ce6bb2fc08db03ac (patch) | |
| tree | 94e9f6724f54472ec82cf96b3f71c7a95bd3321b | |
| parent | 9e912c73038ee3685d32f49d8aa5fe7eba9c5061 (diff) | |
| download | poky-cb79459c30cfde3eb9115f15ce6bb2fc08db03ac.tar.gz | |
base.bbclass: Add error message for base_do_unpack failures
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
| -rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index f726b3c090..54a1dcd013 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -255,7 +255,7 @@ python base_do_unpack() { | |||
| 255 | local = os.path.realpath(local) | 255 | local = os.path.realpath(local) |
| 256 | ret = oe_unpack_file(local, localdata, url) | 256 | ret = oe_unpack_file(local, localdata, url) |
| 257 | if not ret: | 257 | if not ret: |
| 258 | raise bb.build.FuncFailed() | 258 | raise bb.build.FuncFailed("oe_unpack_file failed with return value %s" % ret) |
| 259 | } | 259 | } |
| 260 | 260 | ||
| 261 | GIT_CONFIG = "${STAGING_DIR_NATIVE}/usr/etc/gitconfig" | 261 | GIT_CONFIG = "${STAGING_DIR_NATIVE}/usr/etc/gitconfig" |
