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)
downloadpoky-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 2593066da0..d1bf582b0c 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
26 echo "Running postinst $i..." 26 echo "Running postinst $i..."
27 if [ -x $i ]; then 27 if [ -x $i ]; then
28 if [ "$POSTINST_LOGGING" = "1" ]; then 28 if [ "$POSTINST_LOGGING" = "1" ]; then
29 sh -c $i >>$LOGFILE 2&>1 29 sh -c $i >>$LOGFILE 2>&1
30 else 30 else
31 sh -c $i 31 sh -c $i
32 fi 32 fi