summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/run-postinsts
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2013-07-17 17:09:24 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-18 21:24:29 +0100
commit8b577306104638cf241be54e151b19fa93bbfd3e (patch)
treedc6bfb846b300d3a250753a79713a74d7e4d5b59 /meta/recipes-devtools/run-postinsts
parent681b605de79251c8e5bb2ca0812558c6bd48bc81 (diff)
downloadast2050-yocto-poky-8b577306104638cf241be54e151b19fa93bbfd3e.zip
ast2050-yocto-poky-8b577306104638cf241be54e151b19fa93bbfd3e.tar.gz
run-postinsts: Fix typo
Fix a typo for stderr redirection. (From OE-Core rev: b03c670d44b28c673393468bbe62919f3f8186de) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/run-postinsts')
-rwxr-xr-xmeta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
index 2593066..d1bf582 100755
--- a/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
+++ b/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts
@@ -26,7 +26,7 @@ for i in `ls $pi_dir`; do
echo "Running postinst $i..."
if [ -x $i ]; then
if [ "$POSTINST_LOGGING" = "1" ]; then
- sh -c $i >>$LOGFILE 2&>1
+ sh -c $i >>$LOGFILE 2>&1
else
sh -c $i
fi
OpenPOWER on IntegriCloud