diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-07-31 01:06:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-31 08:02:10 +0100 |
commit | dad01a055bb4fc1cb567723b80196818eb99f6e5 (patch) | |
tree | 379179ce16483757dbef559941f094b822d4a63f /scripts/combo-layer | |
parent | 07c93ba0ce2edbdd5766ece2c0e0f6099a7a5884 (diff) | |
download | poky-dad01a055bb4fc1cb567723b80196818eb99f6e5.tar.gz |
combo-layer: remove &> bashism
&> does not work with dash - use > xxxx 2>&1 instead.
(From OE-Core rev: 5582cc58e42402c4680877e669d8c1ce058e7098)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/combo-layer')
-rwxr-xr-x | scripts/combo-layer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 73d61cce4c..b1a9dcac29 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer | |||
@@ -75,7 +75,7 @@ class Configuration(object): | |||
75 | sys.exit(1) | 75 | sys.exit(1) |
76 | 76 | ||
77 | # filterdiff is required by action_splitpatch, so check its availability | 77 | # filterdiff is required by action_splitpatch, so check its availability |
78 | if subprocess.call("which filterdiff &>/dev/null", shell=True) != 0: | 78 | if subprocess.call("which filterdiff > /dev/null 2>&1", shell=True) != 0: |
79 | logger.error("ERROR: patchutils package is missing, please install it (e.g. # apt-get install patchutils)") | 79 | logger.error("ERROR: patchutils package is missing, please install it (e.g. # apt-get install patchutils)") |
80 | sys.exit(1) | 80 | sys.exit(1) |
81 | 81 | ||